div text center code example

Example 1: css align items vertical center

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

Example 2: how to center an image element inside a block in css

img { display:block;
      margin-left: auto;
      margin-right:auto;
      }

Example 3: center text in css

.class {
	text-align: center;
}

Example 4: center text css

p {
  text-align: center;
}

Example 5: put text in center of a div

html, body {
    height: 100%;
}
.parent {
    width: 100%;
    height: 100%;
    display: table;
    text-align: center;
}
.parent > .child {
    display: table-cell;
    vertical-align: middle;
}

Tags:

Html Example