CSS Display

CSS (Cascading Style Sheets) is a powerful tool used to control the presentation and layout of web pages. One of the key properties in CSS is the “display” property, which determines how elements are rendered on a webpage. In this article, we will delve into the different values of the display property and provide examples to help you understand their usage.

1. Block Display:
The block display value is the default for most HTML elements. It causes elements to generate a line break before and after themselves, creating a block-level box. Block-level elements take up the full width available by default and can have width and height specified. Some common examples of block-level elements are

,

, and

to

.

Example:
“`

.block-example {
display: block;
width: 200px;
height: 100px;
background-color: lightblue;
}

This is a block-level element

“`

2. Inline Display:
The inline display value allows elements to flow within the text content of a document. Inline elements do not cause line breaks and only take up as much width as necessary. Examples of inline elements include , , and .

Example:
“`

.inline-example {
display: inline;
background-color: lightgreen;
padding: 5px;
}

This is an example of inline element within a paragraph.

“`

3. Inline-Block Display:
The inline-block display value combines the characteristics of both inline and block elements. It allows elements to flow within the text content while still being able to specify width, height, and margins. This is particularly useful when you want to create a layout with elements that need to be aligned horizontally.

Example:
“`

.inline-block-example {
display: inline-block;
width: 100px;
height: 100px;
background-color: lightyellow;
margin: 10px;
}

“`

4. None Display:
The none display value hides an element from the page entirely. It is commonly used in conjunction with JavaScript to toggle the visibility of elements dynamically.

Example:
“`

.none-example {
display: none;
}

This paragraph is visible.

This paragraph is hidden.

“`

5. Flex Display:
The flex display value is used to create flexible box layouts. It allows you to easily control the alignment, order, and sizing of elements within a container. The flexbox model is widely used for building responsive designs.

Example:
“`

.flex-container {
display: flex;
justify-content: space-between;
}

.flex-item {
background-color: lightpink;
padding: 10px;
margin: 5px;
}

Item 1
Item 2
Item 3

“`

Understanding the different values of the display property is crucial for controlling the layout of your web pages. By utilizing these values effectively, you can create visually appealing and user-friendly designs. Experiment with these examples and explore further to unlock the full potential of CSS display.

Remember, CSS is a versatile language, and the display property is just one of the many tools at your disposal to create stunning web pages.

Scroll to Top