0

The simplest things... Why isn't the text in the below centered vertically? Isn't that what vertical-align: middle does?

    <div style="width:100%;height: 300px;background-color: #0047b3;vertical-align: middle;">
      Why are you not centered vertically?!?!?!
    </div>
waka
  • 3,362
  • 9
  • 35
  • 54
gtilflm
  • 1,389
  • 1
  • 21
  • 51

1 Answers1

0

If you read some of the flex properties it gets lot easier see below '

div {
  width: 100%;
  height: 300px;
  background-color: #0047b3;
  display: flex;
   align-items: center;
}
<div>whatever you want to align vertically centre </div>
Satyam Pathak
  • 6,612
  • 3
  • 25
  • 52