Firefox 和 Firefox 之间的字体高度变化Webkit 浏览器?

发布于 2024-12-17 05:02:14 字数 572 浏览 0 评论 0原文

Firefox 和 Firefox 之间的字体(myriad pro)似乎不同。 Webkit 浏览器(Chrome 和 Safari)。我没有在 Internet Explorer 上进行过测试。

Firefox & webkit Comparison

form.standard.small input[type=submit] {
    width: 104px;
    height: 36px;
    margin: 12px 2px 4px;
    padding: 5px 27px 5px 45px;
    font-size: 14px;
    background:url('../images/button-small.png') no-repeat 0px 0px;
}

当我进入 Firebug 中的计算样式时,所有参数都是相同的(行高、字体- 大小、填充、边距等)。我尝试将 @font-face 文件隔离为单个 .ttf 文件类型,但没有任何变化。

有人知道为什么/如何修复吗?

The font (myriad pro) seems to be different between Firefox & Webkit browsers (Chrome & Safari). I have not tested on Internet Explorer.

Firefox & webkit comparison

form.standard.small input[type=submit] {
    width: 104px;
    height: 36px;
    margin: 12px 2px 4px;
    padding: 5px 27px 5px 45px;
    font-size: 14px;
    background:url('../images/button-small.png') no-repeat 0px 0px;
}

When I go into the computed style in Firebug, all parameters are the same (line-height, font-size, padding, margin, etc). I tried isolating the @font-face files to a single .ttf file type, but no change.

Anyone know why/how to fix?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

霊感 2024-12-24 05:02:14

Firefox 为按钮添加额外高度是一个已知问题,请尝试将此代码添加到 css 文件中:

button::-moz-focus-inner, input[type="button"]::-moz-focus-inner, input[type="submit"]::-moz-focus-inner {
    padding: 0 !important;
    border: 0 none !important;
}

It's a known issue that firefox adds extra height to buttons, try add this code to the css file:

button::-moz-focus-inner, input[type="button"]::-moz-focus-inner, input[type="submit"]::-moz-focus-inner {
    padding: 0 !important;
    border: 0 none !important;
}
荒岛晴空 2024-12-24 05:02:14

请注意,IE 6 不理解

input[type="button"]

您必须添加一个类。

Be aware that IE 6 do not underdstands the

input[type="button"]

You have to add a class.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文