magento - webkit 上的默认主题多 1px

发布于 2024-12-11 10:28:37 字数 873 浏览 0 评论 0 原文

Magento(版本 1.6.0.0)默认前端主题/皮肤,

在 Chrome 14.0 / Safari 5.1 [Win7 32x] 中有 1px 的空白, Chrome

在 Firefox、Opera 和 IE 中看起来不错。

Firefox

当然,您可以在 http://demo.magentocommerce.com/

非常令人沮丧,我正在尝试解决该问题。正如我所见...

/* skin/frontend/default/default/css/styles.css, line 100 */

.main { 
   width:900px; 
   margin:0 auto; 
   min-height:400px; 
   padding:25px 25px 80px; 
   background:#fffffe url(../images/bkg_main2.gif) 0 0 no-repeat; 
   text-align:left; 
}

.main div 宽 950px。

bkg_main2.gif 宽 962px,高 653px,但左右两侧有 6px 阴影,中心空白区域宽 950px。

所以,一切都应该没问题。

知道问题出在哪里吗? 谢谢你的任何好主意。

Magento (ver. 1.6.0.0) default frontend theme / skin,

In Chrome 14.0 / Safari 5.1 [Win7 32x] there is 1px of white space,
Chrome

In Firefox, Opera and IE looks fine.

Firefox

Of curse you can see it for your self at http://demo.magentocommerce.com/

Very frustrating, I'm trying to solve the problem. As I see...

/* skin/frontend/default/default/css/styles.css, line 100 */

.main { 
   width:900px; 
   margin:0 auto; 
   min-height:400px; 
   padding:25px 25px 80px; 
   background:#fffffe url(../images/bkg_main2.gif) 0 0 no-repeat; 
   text-align:left; 
}

.main div is 950px wide.

bkg_main2.gif is 962px wide and 653px high, but it has 6px shadow at left and right side, blank space in center is 950px wide.

So, everything should be fine.

Any idea where is the problem ?!
Thank you for any good thought.

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

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

发布评论

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

评论(1

你是暖光i 2024-12-18 10:28:38

以下应该可以解决问题:

@media screen and (-webkit-min-device-pixel-ratio:0) {
.main { background: url("../images/bkg_main2.gif") no-repeat scroll -1px 0 #FFFFFE; }
}

这应该可以纠正所有 webkit 浏览器上的背景对齐。让我知道进展如何

The following should do the trick:

@media screen and (-webkit-min-device-pixel-ratio:0) {
.main { background: url("../images/bkg_main2.gif") no-repeat scroll -1px 0 #FFFFFE; }
}

That should correct the background alignment on all webkit browsers. Let me know how it goes

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