为什么按钮中的字体比 div 中的字体更扁平?
查看这些按钮。在左边你可以看到一个样式化的div,但右边是一个输入按钮。字体大小相同,但在按钮中,字体好像被压扁了一点。看字母“k”和“w”。
我需要做什么才能使该字体不扁平化?
Look at these buttons. On the left you can see a styled div, but on the right is an input button. Font-sizes are the same, but in the button the font is like it's flattened a little bit. Look at the letters "k" and "w".
What do I have to do to make this font not flatten?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
Is the
<button>
actually using a different font than the<div>
? Or is it bold?Set
font-family
andfont-weight
to identical values for the<div>
and the<button>
, and see if they look the same then.