CSS 按钮 - 垂直居中文本
我有一个按钮,它是一个简单的锚标记,样式如下 -
.buyBtn{
background:url(../images/buyBtn.png) no-repeat;
padding-top:4px;
width:97px;
height:28px;
margin-top:14px;
}
.buyBtn a{
color:#fff!important;
font-weight:normal!important;
text-decoration:none;
padding-left:27px;
padding-top:12px;
text-shadow:none!important;
}
我在按钮内垂直居中文本时遇到问题,它在某些设备中显示正常,但在其他设备中显示偏离中心。
任何人都可以推荐一种解决此问题的方法或更好的解决方案来实现相同的结果吗?
干杯
I have a Button that is a simple anchor tag styled with the following -
.buyBtn{
background:url(../images/buyBtn.png) no-repeat;
padding-top:4px;
width:97px;
height:28px;
margin-top:14px;
}
.buyBtn a{
color:#fff!important;
font-weight:normal!important;
text-decoration:none;
padding-left:27px;
padding-top:12px;
text-shadow:none!important;
}
I'm having problems vertically centering the text within the button, it appears fine in some devices, but off centre in others.
Can anybody recommend a way to fix this or a better solution to achieve the same result?
Cheers
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(6)
使用 line-height 将其垂直居中。我通常使用与其高度相同的值。
Use line-height to center it vertically. I usually use the same value as its height.
HTML:
CSS:
无需使用
padding-top
或margin-top
进行垂直对齐。只需使用display: table-cell;
和vertical-align: middle;
即可。就是这样。HTML:
CSS:
No need to use
padding-top
ormargin-top
for vertical align. Just usedisplay: table-cell;
andvertical-align: middle;
. Thats it.Flexbox 帮助我解决了这个问题。假设您有一个 Excel 按钮(实际上是一个锚标记)。
HTML
CSS
Flexbox helped me nail it. Assume you have an excel button (an anchor tag, really).
HTML
CSS
如前所述,我将使用
line-height
作为 bchhun。另外,padding-top
&padding-bottom
可以提供帮助。I would use
line-height
as bchhun as mentioned. Also,padding-top
&padding-bottom
can help.您可以复制此代码并将其作为 CSS 并根据需要进行调整
You can copy this code and put it as a CSS and adjust the things as you need
您是否尝试为链接设置字体大小?每个浏览器可能都有自己的默认大小,因此这可能是一个提示。也要小心填充和宽度/高度,如果添加填充,则需要减小块大小,因为填充包含在宽度中。例如,一个没有填充的 100px 宽度的简单块的大小为 100px:好的。添加
padding-left: 10px;
并且您的块现在的宽度为 110px。 ;)Did you try setting a font-size to your link ? Each browser probably has its own default size, so that may be an hint. Be careful too with padding and width/height, you need to decrease the block size if you add padding 'cause the padding is included in the width. For example, a simple block of 100px width without padding will have a size of 100px : ok. Add a
padding-left: 10px;
and your block now has a width of 110px. ;)