I want text in the center of div as div size increases and decreases in HTML. I want vertically centered align.
Asked
Active
Viewed 84 times
1
-
Do you want to center the text vertically or horizontally? – Nitish Kumar May 11 '16 at 04:35
-
I want vertically. horizontally i know.. – Hemangi Satasiya May 11 '16 at 04:36
-
http://stackoverflow.com/a/10539333/4229270 & http://stackoverflow.com/a/17521229/4229270 – Sinto May 11 '16 at 04:41
-
Possible duplicate of [How to vertically center text with CSS?](http://stackoverflow.com/questions/8865458/how-to-vertically-center-text-with-css) – BM5k May 11 '16 at 04:52
3 Answers
1
Add this css to the div
.div_name {
display: table-cell;
vertical-align: middle }

Nitish Kumar
- 317
- 5
- 17