HTML-CSS Center Text horizontally and vertically in a link

前端 未结 6 1766
眼角桃花
眼角桃花 2020-12-29 19:04

I am trying to make a link which has a height and a width of 200px. The text of the link shall be centered vertically and horizontally.

Thi

6条回答
  •  天命终不由人
    2020-12-29 19:18

    If the number of rows (or the inner element height) is not known, there is another trick using display: table and vertical-align:

    .wrapper{
        display: table;
    }
    .link{
        display: table-cell;
        vertical-align: middle;
    }
    

    Example

    Full article with details

提交回复
热议问题