使用 HTML/CSS 我想创建类似按钮的链接:
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;
}
这可以正常工作,但有一个例外:按钮框中的文本不是水平居中的(仅垂直居中)。
如何使文本在框中居中?
并且:我创建类似按钮的链接的方法是否正确,或者我可以更容易实现吗?