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,162
  • 9
  • 33
  • 51
gtilflm
  • 1,299
  • 1
  • 19
  • 47

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
  • 5,860
  • 3
  • 22
  • 50