CSS align-items Property

You are Here:

CSS align-items Property

CSS align-items property specifies the default alignment for items inside the flexible container.

Note: You can use CSS align-self property for each flex item to override the align-items.

Example

HTML Online Editor
<!DOCTYPE html> <html lang="en-US"> <head> <style> h2+div{ display: flex; flex-direction: row; width: 100%; min-height: 250px; border: 1px solid #8c8c8c; } h2+div > div{ width: 90px; border: 1px solid #8c8c8c; margin: 10px; } #parent{ align-items: stretch; } #parent1{ align-items: center; } </style> </head> <body> <h1>CSS align-items Property</h1> <h2>align-items: stretch; (default)</h2> <div id="parent"> <div>Div 1</div> <div>Div 2</div> <div>Div 3</div> </div> <h2>align-items: center;</h2> <div id="parent1"> <div>Div 1</div> <div>Div 2</div> <div>Div 3</div> </div> </body> </html>

Syntax

Using CSS

element{ align-items: center; }

Using Javascript

object.style.alignItems="center";

Animatable

No, align-items property is not animatable. CSS Animatable Properties Reference.

Default Value

Default value for CSS align-items property is stretch.

Property Value

The following table provides a list of values for CSS align-items property.

ValueExplanation
stretchItems are stretched to fit the container.
centerItems are placed at the center of the container.
flex-startItems are placed at the start of the container.
flex-endItems are placed at the end of the container.
baselineItems are placed at the baseline of the container.

Using JavaScript

In the following example, we will demonstrate how to change the CSS align-items property of an element using JavaScript.

Example

HTML Online Editor
<!DOCTYPE html> <html lang="en-US"> <head> <style> #parent{ display: flex; flex-direction: row; width: 100%; min-height: 250px; border: 1px solid #8c8c8c; } #parent > div{ width: 90px; border: 1px solid #8c8c8c; margin: 10px; } </style> </head> <body> <h1>CSS align-items Property</h1> <div id="parent"> <div>Div 1</div> <div>Div 2</div> <div>Div 3</div> </div> <button onclick="myFunction()">Click Me</button> <script> var x = document.getElementById("parent"); function myFunction(){ x.style.alignItems = "center"; } </script> </body> </html>

Reminder

Hi Developers, we almost covered 98.7% of CSS Tutorials with examples for quick and easy learning.

We are working to cover every Single Concept in CSS.

Please do google search for:

Join Our Channel

Join our telegram channel to get an instant update on depreciation and new features on HTML, CSS, JavaScript, jQuery, Node.js, PHP and Python.

This channel is primarily useful for Full Stack Web Developer.

Share this Page

Meet the Author