div horizontal align code example

Example 1: css center image

.center {
  display: block;
  margin-left: auto;
  margin-right: auto;
}

Example 2: css align center

//HTML
<div class="parent">
	<span>Hello World</span>
</div>

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

Example 3: css align items vertical center

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

Example 4: how to align items in css

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

Example 5: how to get my div to centre

.div{margin: 0 auto;}

Example 6: how to align elements horizontally in css

<div class="row">
  <div class="block">Lorem</div>
  <div class="block">Ipsum</div>
  <div class="block">Dolor</div>
</div>

Tags:

Misc Example