1

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

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
  • 319
  • 5
  • 16
0

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

Jay
  • 151
  • 1
  • 13