HTML-CSS Center Text horizontally and vertically in a link

前端 未结 6 1735
眼角桃花
眼角桃花 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:31

    remove all that other nonsense, and just replace height with line-height

    a:link.Kachel{
       width: 200px;
       line-height: 200px;
       display: block;
       text-align: center;
       background: #383838;
    }
    

    jsfiddle: http://jsfiddle.net/6jSFY/

提交回复
热议问题