Opera 中的字体太大

发布于 2024-11-03 17:47:06 字数 67 浏览 3 评论 0原文

我的网页上有一个文本项在 Opera 浏览器中显得太大。有没有办法只为 Opera 编辑文本大小和 css 的其他方面?

I have a text item on a web page that appears too large in opera browsers. Is there a way to edit text size and other aspects of the css for only opera?

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

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

发布评论

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

评论(3

最后的乘客 2024-11-10 17:47:06

查看此链接(向下滚动到有关 Opera 的部分)
这里

(我从来不知道这一点,但是......)显然你可以使用:

@media all and (-webkit-min-device-pixel-ratio:10000), not all and (-webkit-min-device-pixel-ratio:0) {

.operaSpecificStuff { }

}

check out this link (scroll down to the part about Opera)
Here

(I never knew this but...) apparently you can use:

@media all and (-webkit-min-device-pixel-ratio:10000), not all and (-webkit-min-device-pixel-ratio:0) {

.operaSpecificStuff { }

}
一页 2024-11-10 17:47:06

Opera 在用 em 或 % 定义的字体大小方面存在错误。只需像这样重置字体大小:

body { font-size: 16px;}

Opera has a bug in font size defined by em or %. Just reset the font size like this:

body { font-size: 16px;}
初懵 2024-11-10 17:47:06

Opera 不允许字体大小小于 10 像素,这导致只有 Opera 中的小文本才能使用更大的字体。这是设计意图,因为此设置只能由用户更改。

请参阅以下线程:http://forums.devshed.com/css-help-116/force-opera-to-use-font-size-less-than-10px-or-763589.html

Opera doesn't allow for font-sizes smaller than 10px – which results in having bigger fonts on small texts in Opera only. This is intended by design as this setting can be changed by the user only.

See the following thread: http://forums.devshed.com/css-help-116/force-opera-to-use-font-size-less-than-10px-or-763589.html

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