Posts

Showing posts with the label The Display Property in CSS Layout

The Display Property in CSS Layout

Image
CSS Layout - The display Property The  display  property plays a very important role in controlling CSS layout. The display Property The  display  the property specifies how to display an element. Every HTML element has a default display value depending on the type of element. There are two default display values for most of the elements one is  block  and other is  inline . Block-level Elements The main feature of a block-level element is that it always starts on a new line and takes up the full width available. Block Element Block-level elements: <div> <h1> - <h6 > <p> <form > <header > <footer > <section > Inline Elements Sometimes we want to place an element which should take up only a limited portion of the screen then we use Inline Elements. It does not start on a new line and only takes up as much width as needed . Inline elements:...