Basic and Advance CSS Examples and Concepts Question:
Download Questions PDF

What Are the Formatting Behaviors of HTML Elements?

Answer:

From a formatting behavior point of view, HTML elements can be divided into 2 categories:

► Block Element - Formatted as a rectangular block occupying the entire width of the parent content box. For example, <P> is block element.
► Inline Element - Formatted as a rectangular block joining other inline elements horizontally to form a line of inline elements. If the width of the parent content box is reached, it will be wrapped to start a new line. One or more lines of in-line elements become a block element. For example, <IMG> is an inline element.


Download Cascading Style Sheet CSS Interview Questions And Answers PDF

Previous QuestionNext Question
What Is the HTML Element Formatting Model in CSS?What Is a Block Element in CSS?