How to align text vertically?
What is the easiest way to align the text vertically here with CSS ? <ul> <li>Hello</li> <li>Bye Bye</li> <li>Ciao</li> </ul> li { border: 1px solid black; width: 100px; height: 50px; margin-bottom: 20px; text-align: center; } If you have just one line of text, you can set the line-height to the same value as the height . This works for any element. Hacky, but possibly the easiest way: li { display: table-cell; vertical-align: center; } You will need to add a background image in place of the list item bullet. If you know you're always going to center a single line you could match height and