
- CSS Tutorial
- CSS - Home
- CSS - Roadmap
- CSS - Introduction
- CSS - Syntax
- CSS - Inclusion
- CSS - Types
- CSS - Measurement Units
- CSS - Selectors
- CSS - Colors
- CSS - Backgrounds
- CSS - Fonts
- CSS - Text
- CSS - Images
- CSS - Links
- CSS - Tables
- CSS - Borders
- CSS - Border Block
- CSS - Border Inline
- CSS - Margins
- CSS - Lists
- CSS - Padding
- CSS - Cursor
- CSS - Outlines
- CSS - Dimension
- CSS - Scrollbars
- CSS - Inline Block
- CSS - Dropdowns
- CSS - Visibility
- CSS - Overflow
- CSS - Clearfix
- CSS - Float
- CSS - Arrows
- CSS - Resize
- CSS - Quotes
- CSS - Order
- CSS - Position
- CSS - Hyphens
- CSS - Hover
- CSS - Display
- CSS - Focus
- CSS - Zoom
- CSS - Translate
- CSS - Height
- CSS - Hyphenate Character
- CSS - Width
- CSS - Opacity
- CSS - Z-Index
- CSS - Bottom
- CSS - Navbar
- CSS - Overlay
- CSS - Forms
- CSS - Align
- CSS - Icons
- CSS - Image Gallery
- CSS - Comments
- CSS - Loaders
- CSS - Attr Selectors
- CSS - Combinators
- CSS - Root
- CSS - Box Model
- CSS - Counters
- CSS - Clip
- CSS - Writing Mode
- CSS - Unicode-bidi
- CSS - min-content
- CSS - All
- CSS - Inset
- CSS - Isolation
- CSS - Overscroll
- CSS - Justify Items
- CSS - Justify Self
- CSS - Tab Size
- CSS - Pointer Events
- CSS - Place Content
- CSS - Place Items
- CSS - Place Self
- CSS - Max Block Size
- CSS - Min Block Size
- CSS - Mix Blend Mode
- CSS - Max Inline Size
- CSS - Min Inline Size
- CSS - Offset
- CSS - Accent Color
- CSS - User Select
- CSS - Cascading
- CSS Selectors
- CSS - Universal Selectors
- CSS - ID Selectors
- CSS - Group Selectors
- CSS - Class Selectors
- CSS - Child Selectors
- CSS - Element Selectors
- CSS - Descendant Selectors
- CSS - General Sibling Selectors
- CSS - Adjacent Sibling Selectors
- CSS Advanced
- CSS - Grid
- CSS - Grid Layout
- CSS - Flexbox
- CSS - Visibility
- CSS - Positioning
- CSS - Layers
- CSS - Pseudo Classes
- CSS - Pseudo Elements
- CSS - @ Rules
- CSS - Text Effects
- CSS - Paged Media
- CSS - Printing
- CSS - Layouts
- CSS - Validations
- CSS - Image Sprites
- CSS - Important
- CSS - Data Types
- CSS3 Advanced Features
- CSS - Rounded Corner
- CSS - Border Images
- CSS - Multi Background
- CSS - Color
- CSS - Gradients
- CSS - Box Shadow
- CSS - Box Decoration Break
- CSS - Caret Color
- CSS - Text Shadow
- CSS - Text
- CSS - 2d transform
- CSS - 3d transform
- CSS - Transition
- CSS - Animation
- CSS - Multi columns
- CSS - Box Sizing
- CSS - Tooltips
- CSS - Buttons
- CSS - Pagination
- CSS - Variables
- CSS - Media Queries
- CSS - Functions
- CSS - Math Functions
- CSS - Masking
- CSS - Shapes
- CSS - Style Images
- CSS - Specificity
- CSS - Custom Properties
- CSS Responsive
- CSS RWD - Introduction
- CSS RWD - Viewport
- CSS RWD - Grid View
- CSS RWD - Media Queries
- CSS RWD - Images
- CSS RWD - Videos
- CSS RWD - Frameworks
- CSS References
- CSS Interview Questions
- CSS Online Quiz
- CSS Online Test
- CSS Mock Test
- CSS - Quick Guide
- CSS - Cheatsheet
- CSS - Properties References
- CSS - Functions References
- CSS - Color References
- CSS - Web Browser References
- CSS - Web Safe Fonts
- CSS - Units
- CSS - Animation
- CSS Resources
- CSS - Useful Resources
- CSS - Discussion
CSS - align-self Property
CSS align-self property controls the alignment of an individual item within a container that is using a flexbox or grid layout. While align-items is used to set the default alignment for all items in a container, align-self overrides that alignment for a specific item.
The items are aligned on the cross-axis in flexbox, whereas in a grid, the property aligns the items inside the grid area.
Syntax
align-self: auto | stretch | center | flex-start | flex-end | baseline | initial | inherit;
Property Values
Value | Description |
---|---|
auto | The element inherits its parent container's align-items property, if no parent container then "stretch" is used. Default. |
stretch | The element is placed at a position to fit the container. |
center | The element is placed at the center position of the container. |
flex-start | The element is placed at the beginning position of the container. |
flex-end | The element is placed at the ending position of the container. |
baseline | The element is placed at the baseline position of the container. |
initial | This sets the property to its default value. |
inherit | This inherits the property from the parent element. |
Examples of CSS Align Self Property
The following examples explain the align-self property with different values.
Default Position of Flex Item
To let a flex item, take the position given by the align-items property without having its own position, we use the auto value. In the following example, the third flex item is set to the intial position inside the flex container.
Example
<!DOCTYPE html> <html> <head> <style> .flex_container { display: flex; align-items: center; border:1px solid black; height: 300px; gap:10px; } .flex_container div { background-color: grey; border:2px solid black; } .flex-item { align-self: auto; } </style> </head> <body> <h2>CSS align-self property</h2> <div class="flex_container"> <div>Flex item 1</div> <div>Flex item 2</div> <div class="flex-item">Flex item 3</div> <div>Flex item 4</div> <div>Flex item 5</div> </div> </body> </html>
Stretched Flex Item
To let a flex item be positioned such that it fits the container, we use the stretch value. In the following example, the individual flex items are stretched vertically to fill the available space of the flex container.
Example
<!DOCTYPE html> <html> <head> <style> .flex-container { display: flex; border:1px solid black; height: 350px; flex-wrap: wrap; align-items: center; gap:10px; } .flex-container div { background-color: grey; border:2px solid black; } .flex-item{ align-self:stretch; } </style> </head> <body> <h2>CSS align-self property</h2> <div class="flex-container"> <div>Flex item 1</div> <div>Flex item 2</div> <div class="flex-item">Flex item 3</div> <div>Flex item 4</div> </div> </body> </html>
Flex Item at Center
To let a flex item take the center position against the positions of other flex items, we use center value. In the following example, third flex item is set to the center of the cross axis of a flex container.
Example
<!DOCTYPE html> <html> <head> <style> .flex_container { display: flex; border:1px solid black; height: 300px; gap:10px; } .flex_container div { background-color: grey; border:2px solid black; height: 50px; } .flex-item { align-self: center; } </style> </head> <body> <h2>CSS align-self property</h2> <div class="flex_container"> <div>Flex item 1</div> <div>Flex item 2</div> <div class="flex-item">Flex item 3</div> <div>Flex item 4</div> <div>Flex item 5</div> </div> </body> </html>
Flex Item at Start
To let a flex item take the starting position against other flex items, we use the flex-start value. In the following example, third flex item is set to the start of the cross axis of a flex container.
Example
<!DOCTYPE html> <html> <head> <style> .flex_container { display: flex; align-items: center; border:1px solid black; height: 300px; gap:10px; } .flex_container div { background-color: grey; border:2px solid black; height: 50px; } .flex-item { align-self: flex-start; } </style> </head> <body> <h2>CSS align-self property</h2> <div class="flex_container"> <div>Flex item 1</div> <div>Flex item 2</div> <div class="flex-item">Flex item 3</div> <div>Flex item 4</div> <div>Flex item 5</div> </div> </body> </html>
Flex Item at End
To let a flex item take the ending position against other flex items, we use the flex-end value. In the following example, third flex item is set to the end of the cross axis of a flex container.
Example
<!DOCTYPE html> <html> <head> <style> .flex_container { display: flex; align-items: center; border:1px solid black; height: 300px; gap:10px; } .flex_container div { background-color: grey; border:2px solid black; height: 50px; } .flex-item { align-self: flex-end; } </style> </head> <body> <h2>CSS align-self property</h2> <div class="flex_container"> <div>Flex item 1</div> <div>Flex item 2</div> <div class="flex-item">Flex item 3</div> <div>Flex item 4</div> <div>Flex item 5</div> </div> </body> </html>
Flex Item at Baseline
To let a flex item be positioned at the baseline of the container, we use the baseline value. In the following example, the third flex item is set along the baseline of the container.
Example
<!DOCTYPE html> <html> <head> <style> .flex_container { display: flex; align-items: center; border:1px solid black; height: 300px; gap:10px; } .flex_container div { background-color: grey; border:2px solid black; height: 50px; } .flex-item { align-self: baseline; } </style> </head> <body> <h2>CSS align-self property</h2> <div class="flex_container"> <div>Flex item 1</div> <div>Flex item 2</div> <div class="flex-item">Flex item 3</div> <div>Flex item 4</div> <div>Flex item 5</div> </div> </body> </html>
Supported Browsers
Property | ![]() |
![]() |
![]() |
![]() |
![]() |
---|---|---|---|---|---|
align-self | 57.0 | 16.0 | 52.0 | 10.1 | 44.0 |