HTML-CSS Center Text horizontally and vertically in a link

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

    In CSS3, you can achieve this with a flexbox without any extra elements.

    .link {
        display: flex;
        justify-content: center;
        align-items: center;
    }
    

提交回复
热议问题