为提升您的使用体验,本站正在维护,部分功能暂时无法使用。如果本站文章无法解决您的问题,您想要向社区提问的话,请到 Twitter 上的 @FirefoxSupport 或 Reddit 上的 /r/firefox 提问,我们的支持社区将会很快回复您的疑问。

搜索 | 用户支持

防范以用户支持为名的诈骗。我们绝对不会要求您拨打电话或发送短信,及提供任何个人信息。请使用“举报滥用”选项报告涉及违规的行为。

详细了解

Is anyone else experiencing rendering errors in Firefox 17 64bit Ubuntu 12.04

  • 2 个回答
  • 3 人有此问题
  • 1 次查看
  • 最后回复者为 pwujek

more options

I am experiencing a few problems which do not occur in the Windows version (tested on Vista and Win7) and tested on different Ubuntu machines all at 12.04 Ubuntu.

The main problem seems to be related to positioning of DIVs. DIVs which are meant to follow each other horizontally instead appear on top of each other.

This seems to be related to CSS because the problem only occurs for the application that I am developing, and I have not seen it appear on any external web sites.

One problem that I solved is that CSS border-radius requires that units be specified in Linux but not windows, so: .close-button {

 -moz-border-radius: 18;
 border-radius: 18;

} Fails in Linux and not in Windows, whereas: .close-button {

 -moz-border-radius: 18px;
 border-radius: 18px;

} Works in both Windows and Linux.

I am experiencing a few problems which do not occur in the Windows version (tested on Vista and Win7) and tested on different Ubuntu machines all at 12.04 Ubuntu. The main problem seems to be related to positioning of DIVs. DIVs which are meant to follow each other horizontally instead appear on top of each other. This seems to be related to CSS because the problem only occurs for the application that I am developing, and I have not seen it appear on any external web sites. One problem that I solved is that CSS border-radius requires that units be specified in Linux but not windows, so: .close-button { -moz-border-radius: 18; border-radius: 18; } Fails in Linux and not in Windows, whereas: .close-button { -moz-border-radius: 18px; border-radius: 18px; } Works in both Windows and Linux.

所有回复 (2)

more options

CSS always requires units, except for zero, so I'm not sure why Firefox on Windows didn't produce the same error...

Some differences between platforms may relate to font differences. However, I don't have a Linux system, so I don't have first-hand experience with particular cases.

more options

The strange thing about the CSS is that no browser than Firefox 17 on Linux failed, Chrome, IE, all work just fine, even Firefox < 17.

I'm sure my problems are basically with CSS, it's just strange that they only show up in Firefox 17 on Linux.