Which lines of code should you use?

You are developing an HTML5 page that has an element with an ID of logo. The page
includes the following HTML.
<div>
Logo:<br>
<div id=”logo”>
</div>
</div>

You need to move the logo element lower on the page by five pixels.
Which lines of code should you use? (Each correct answer presents part of the solution.
Choose two.)

You are developing an HTML5 page that has an element with an ID of logo. The page
includes the following HTML.
<div>
Logo:<br>
<div id=”logo”>
</div>
</div>

You need to move the logo element lower on the page by five pixels.
Which lines of code should you use? (Each correct answer presents part of the solution.
Choose two.)

A.
document.getElementById(“logo”) .style.position = “relative”;

B.
document.getElementByld(“logo”).Style.top = “5px”;

C.
document.getElementById(“logo”).style.top = “-5px”;

D.
document.getElementById(“logo”).style.position = “absolute”;

Explanation:

http://www.w3schools.com/cssref/pr_class_position.asp
http://www.w3schools.com/cssref/pr_pos_top.asp



Leave a Reply 2

Your email address will not be published. Required fields are marked *

twelve + nineteen =


Will

Will

NOTE: Capitalization does matter in JavaScript. Answer B should have lower case “s” for the word style:

document.getElementById(“logo”).style.top=”5px”;