CSS – Vertical Align Content in Table Cells to Middle

To align the content in table cells in the middle along vertical axis using CSS, set CSS vertical-align property for the table cells td with the value middle.

The CSS code to set vertical alignment for table cells to middle is showing in the following.

td {
  vertical-align: middle;
}

Examples

ADVERTISEMENT

1. Align table contents to middle

In the following example, we take a table with two columns, and three rows; and set the vertical alignment of content in table cells to middle.

index.html

Conclusion

In this CSS Tutorial, we learned how to use CSS vertical-align property to vertically align content in the table cells in the middle, with examples.