Basic and Advance CSS Examples and Concepts Question: Download Cascading Style Sheet CSS PDF

What Are the Formatting Behaviors of HTML Elements?

Tweet Share WhatsApp

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 PDF Read All 26 Cascading Style Sheet CSS Questions
Previous QuestionNext Question
What Is the HTML Element Formatting Model in CSS?What Is a Block Element in CSS?