#1 Data Analytics Program in India
₹2,499₹1,499Enroll Now
4 min read
Question 5 of 49easy

What are CSS Display Values?

Understanding block, inline, inline-block, flex, grid, and none.

What You'll Learn

  • Common display values
  • Block vs inline behavior
  • Modern layout values

Display Values

ValueBehavior
blockFull width, new line
inlineContent width, same line
inline-blockInline but accepts width/height
flexFlexbox container
gridGrid container
noneRemoves from layout

Examples

styles.cssCSS
/* Block - full width */
div { display: block; }

/* Inline - flows with text */
span { display: inline; }

/* Inline-block - inline with dimensions */
.btn {
  display: inline-block;
  width: 100px;
  height: 40px;
}

/* Hide element */
.hidden { display: none; }