- CSS Tutorial
- CSS Introduction
- CSS Syntax
- CSS Comments
- CSS Selectors
- CSS Fonts
- CSS Colors
- CSS Backgrounds
- CSS Box Model
- CSS Borders
- CSS Margins
- CSS Padding
- CSS Text
- CSS Images
- CSS Links
- CSS Lists
- CSS Tables
- CSS Outline
- CSS Icons
- CSS Display
- CSS max-witdh
- CSS Position
- CSS z-index
- CSS Overflow
- CSS Float
- CSS Align
- CSS Opacity
- CSS Navigation Bar
- CSS Dropdowns
- CSS Forms
- CSS Units
- CSS !important
- CSS Specificity
- CSS Combinators
- CSS inline-block
- CSS Hover
- CSS Cursors
- CSS Selectors
- CSS Type Selector
- CSS Class Selector
- CSS ID Selector
- CSS Attribute Selector
- CSS Pseudo-class Selector
- CSS Pseudo-element Selector
- CSS Universal Selector
- CSS Advanced
- CSS Text Formatting
- CSS Gradients
- CSS Shadow
- CSS Rounded Corners
- CSS Text Effects
- CSS 2D Transform
- CSS 3D Transform
- CSS Border Images
- CSS Inherit
- CSS Transitions
- CSS Animations
- CSS Box Sizing
- CSS Tooltip
- CSS Masking
- CSS Pagination
- CSS Styling Images
- CSS object-fit
- CSS object-position
- CSS Buttons
- CSS Multiple Columns
- CSS Variables
- CSS Flexbox
- CSS Grid
- CSS Media Queries
CSS: Inline-block
The inline-block
value for the CSS display
property allows you to create a layout where elements are displayed inline with one another but still retain their block-level characteristics. This means that unlike inline elements, inline-block
elements can have a specified width
and height
, and their top and bottom margins and paddings are respected.
Here’s a quick rundown of the inline-block
display value:
- Inline Characteristics: Elements with
display: inline-block;
sit next to each other on the same line, similar tospan
elements, as long as there is space in the container. - Block Characteristics: Unlike
display: inline;
,inline-block
elements respect thewidth
andheight
properties. They also respect vertical margins and paddings, which are not respected byinline
elements. - No Line Break:
inline-block
elements do not add a line-break after the element, so they can sit next to other elements, unlikedisplay: block;
elements that always start on a new line.
Here’s an example to illustrate the use of inline-block
:
CSS
This property is particularly useful for creating horizontally aligned menus or buttons without using floats or flexbox