Q. Which element has very similar properties to the DIV element?
β
Correct Answer: (B)
span
Explanation: The difference between span and div is that the span element is usually used for a small piece of code in a line, while the div element is a block and used to group together large pieces of code. Example:
<div id = "myDiv">
<p> Lorem <span class = "paper"> ipsum </span> </p>
</div>