CSS property vertical-align not working
I was trying to apply the CSS property vertical-align: middle on an element but no luck, it was not working as expected. Here is an example of non-functioning code : .container { background-color: red; height: 50px; width: 100px; } .text { vertical-align: middle; } The first option would be to set a line-height on the …