我希望我的锚标签看起来像一个按钮,并创建了这种样式JsFiddle
.details-button {
background: linear-gradient(to bottom, #FFFFFF 0, #FAB149 2%, #F89406 100%) repeat scroll 0 0 transparent;
border: 1px solid #FAB149;
-ms-border-radius: 3px;
border-radius: 3px;
-webkit-box-shadow: 0 1px 2px #999999;
-ms-box-shadow: 0 1px 2px #999999;
box-shadow: 0 1px 2px #999999;
color: #FFFFFF;
cursor: pointer;
font-family:"Helvetica Neue", Helvetica, Arial, sans-serif;
font-size: 13px;
font-weight: bold;
-ms-text-shadow: 0 -1px #099FDF;
text-shadow: 0 -1px #099FDF;
margin: 4px;
height: 28px;
width: 85px;
vertical-align: central;
align-items: center;
text-decoration: none;
font: menu;
display: inline-block;
/*padding: 6px 0 5px 18px;*/
}
它看起来像我想要的,但如何在锚标记内水平和垂直居中文字?
答案 0 :(得分:22)
答案 1 :(得分:3)
首先,删除此样式声明;它是无效的标记:
vertical-align: central;
接下来,添加此项以使文本水平居中:
text-align: center;
最后,让你的高度自动而不是行高声明,将padding设置为taste:
height:auto;
padding:3px 0;
应该这样做!请务必删除无效声明,因为它可能会导致CSS在某些浏览器中中断。
答案 2 :(得分:2)
要在中心水平和中间垂直对齐文本,请尝试以下操作:
CSS: Example Fiddle
.details-button{
//your existing styles
//height: 28px; <-- remove this entry
text-align: center;
padding: 6px 0;
}
答案 3 :(得分:1)
现有课程中只需text-align: center;
。
答案 4 :(得分:0)
line-height
和padding
可以工作,但是我喜欢使用
{
display: flex;
flex-direction: column;
justify-content: center;
text-align: center;
}
将文本居中放置在高度可能会变化的标签中。
答案 5 :(得分:0)
这有效:
{
display: grid;
justify-content: center;
}
答案 6 :(得分:0)
如此简单,只需添加
text-align: center;
转到您的目标班级。