How to display elements in CSS Each and every element we write in HTML is displayed in the web page and takes its space. Each element has its own display property but we can control the same using CSS rules. Block level elements Elements like paragraph <p>, div <div> are block elements having default display value as block. Block elements takes up horizontal space as much as possible. They always fall in a new line stacked one below the other. They can contain block or inline elements and can be even wrapped inside an inline element. You can specify width and height to block level elements. Common elements listed below are block level elements. i. <div> ii. <ul>,<ol>,<dl> iii. <h1>...<h6> iv. <p> v. <form> vi. <li>,<dt>,<dd> vii. <table>