css align div code example

Example 1: css align items vertical center

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

Example 2: css center text in div

/* For horizontal align: */
parent-element {text-align:center;}
/* For horizontal and vertical align: */
parent-element {position: relative;}
element-to-be-centered {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

/* See https://www.w3schools.com/css/css_align.asp for more info */

Example 3: css center

// example 1 
div { display: grid; place-items: center; }

// example 3
div{ display:flex; align-items:center; }

// example 3
div { width: 100%; margin: 0 auto; }

Example 4: how to horizontal center a div in css

#inner {
  width: 50%;
  margin: 0 auto;
}

Example 5: center text in div container

text-align: center

Example 6: centering horizontally

div.center{display:block;margin:auto;width:50%;}
p.center{text-align:center;}

Tags:

Html Example