Rosa wants to position a paragraph 100 pixels below the top of the HTML document, and 100 pixels from its left margin. Which styles should she use?
top: 100px; left: 100px
position: relative; top: 100px; left: 100px
position: absolute;top: 100px;left: 100px
position: absolute;margin-top: 100px;margin-left: 100px
Submit