1

I want text in the center of div as div size increases and decreases in HTML. I want vertically centered align.

Hemangi Satasiya
  • 53
  • 1
  • 2
  • 8

3 Answers3

1

apply display:flex; to parent div

1

Add this css to the div

.div_name {
    display: table-cell;
    vertical-align: middle }
Nitish Kumar
  • 317
  • 5
  • 17
0

if you want horizontal then use text-align:center and if you want verticaly please check that demo

Jay
  • 151
  • 1
  • 13