align item center css code example

Example 1: how to make a division center css

position:absolute;
top:50%;
left:50%;
transform:translate(-50%,-50%);

Example 2: how to align items in css

div
{
  display:flex;
  align-items:center;
  justify-content:center;
  
}

Example 3: align items center css

.parent_div
{
  display:flex;
  align-items:center;
}

Example 4: css text align center

body {
  text-align: center;
}

Example 5: alignitems

/* Basic keywords */ 
align-items: normal; 
align-items: stretch; 

/* Positional alignment */ 
/* align-items does not take left and right values */
align-items: center; /* Pack items around the center */ 
align-items: start; /* Pack items from the start */ 
align-items: end; /* Pack items from the end */ 
align-items: flex-start; /* Pack flex items from the start */ 
align-items: flex-end; /* Pack flex items from the end */

/* Baseline alignment */
align-items: baseline; 
align-items: first baseline; 
align-items: last baseline; /* Overflow alignment (for positional alignment only) */ 
align-items: safe center; 
align-items: unsafe center; 

/* Global values */
align-items: inherit; 
align-items: initial; 
align-items: unset;

Example 6: center a div

<div id="outer">
  <div id="inner">Foo foo</div>
</div>
//css:, demo with border
<style>
#inner {
  display: table;
  margin: 0 auto;
  border: 1px solid black;
}

#outer {
  border: 1px solid red;
  width:100%
}
</style>

Tags:

Css Example