Using HTML/CSS I want to create button-like link:
a.btnlink{
border: 2px solid #808080;
-webkit-box-align: center;
-moz-box-align: center;
box-align: center;
display: -webkit-box;
display: -moz-box;
display: box;
height: 50px;
margin-bottom: 5px;
padding: 2px;
text-align: center;
text-decoration: none;
width: 200px;
}
This works fine with one exception: The text within the button box is not centered horizontally (only vertically).
How can I center the text within the box?
And: is my approach to create a button-like link correct, or can I achive that easier?