This site is mobile accessible. Press the "Tap Here" button to use a smaller font-size.
Smartphone icons created by Freepik - Flaticon
The
property is the most important CSS property for controlling layout.The
property specifies if/how an element is displayed. Every HTML element has a default display value depending on what type of element it is. The default display value for most elements is or .A block-level element always starts on a new line and takes up the full width available (stretches out to the left and right as far as it can).
The <div> element is a block-level element.
Examples of block-level elements:
An inline element does not start on a new line and only takes up as much width as necessary.
This is an inline <span> element inside a paragraph. Examples of inline elements:
is commonly used with JavaScript to hide and show elements without deleting and recreating them. Take a look at our last example on this page if you want to know how this can be achieved.
The <script> element uses
as default.As mentioned, every element has a default display value. However, you can override this.
Changing an inline element to a block element, or vice versa, can be useful for
making the page look a specific way, and still follow the web standards.
A common example is making inline elements
for horizontal menus:
li { display: inline; }
Note: Setting the display property of an element only changes how the element is displayed, NOT what kind of element it is. So, an inline element with display: block; is not allowed to have other block elements inside it.
The following example displays <span> elements as block elements:
span { display: block; }
The following example displays <a> elements as block elements:
a { display: block; }
Hiding an element can be done by setting the
property to . The element will be hidden, and the page will be displayed as if the element is not there:h1.hidden { display: none; }
also hides an element. However, the element will still take up the same space as before. The element will be hidden, but still affect the layout:
h1.hidden { visibility: hidden; }
Differences between display: none; and visibility: hidden; This example demonstrates display: none; versus visibility: hidden;
Using CSS together with JavaScript to show content This example demonstrates how to use CSS and JavaScript to show an element on click.
Property | Description |
---|---|
display | Specifies how an element should be displayed |
visibility | Specifies whether or not an element should be visible |