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:
A web page has a section that contains an <article> element. The element is always 10 pixels to the right of its position. Which type of layout positioning should the <article> element use?
Correct Answer: A
Relative positioning in CSS positions an element relative to its normal position. Using position: relative; allows you to adjust the element's position with the top, right, bottom, or left properties. * CSS Relative Positioning: * Syntax: article { position: relative; left: 10px; } * Description: Moves the element 10 pixels to the right from its normal position. * Example: * Given HTML: <article>Content</article> * Given CSS: article { position: relative; left: 10px; } * Explanation: The <article> element will be positioned 10 pixels to the right of where it would normally appear. * References: * MDN Web Docs - position * W3C CSS Positioned Layout Module Level 3