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.
height
width
Thi
In CSS3, you can achieve this with a flexbox without any extra elements.
.link { display: flex; justify-content: center; align-items: center; }