Home » CSS » CSS Styling Images » Question
  1. Which is not a box-level element?
    1. <b>
    2. <p>
    3. <ul>
    4. <li>
    5. None of these
Correct Option: A

CSS treats each HTML element as if it is in its own box. This box will either be block-level Box or inline box. Block-level elements start on a new line e.g. <p>, <ul>, <li> and <h1>. Inline elements follow in between surrounding text like <img>, <i>, <b>.



Your comments will be displayed only after manual approval.