Valid Web-Development-Applications Dumps shared by ExamDiscuss.com for Helping Passing Web-Development-Applications Exam! ExamDiscuss.com now offer the newest Web-Development-Applications exam dumps, the ExamDiscuss.com Web-Development-Applications exam questions have been updated and answers have been corrected get the newest ExamDiscuss.com Web-Development-Applications dumps with Test Engine here:
Given the following CSS margin shorthand property: ```css p { margin: 10px 20px 25px 30px; } ``` How many pixels is the top margin?
Correct Answer: A
> "When using the `margin` shorthand with four values: > > * The first value is the top margin > * The second is the right margin > * The third is the bottom margin > * The fourth is the left margin" So, `margin: 10px 20px 25px 30px;` translates to: * top: 10px * right: 20px * bottom: 25px * left: 30px References: * MDN Web Docs: margin shorthand property * CSS Logical Properties specification ---