Posts by André Duarte • 56 points
1 post
-
4
votes2
answers241
viewsA: How to specify a CSS class for text that breaks line in an HTML element?
In your CSS you will need to declare height, display as table-Cell and vertical-align Middle. .seletor { display: table-cell; height: 100px; vertical-align: middle; } Take the example:…