IE7 CSS 浮动与其他所有内容(Webkit、IE8/9 等)的行为不同

发布于 2025-01-07 15:35:48 字数 888 浏览 0 评论 0原文

好的,我有一个包含各种嵌套 div 的布局。

本质上,我有一个带有居中内容区域的左图像背景和一个右图像。

我希望图像尽可能接近内容,无论页面宽度如何。所以在这种情况下,左图像向右浮动。我使用边距是为了将左侧图像与内容的左侧正确对齐。

CSS

.left { 
  left: 0; 
} 

.column_left { 
  width: 50%; 
  position: absolute; 
  top: 0; 
  text-align: right;
}

#leftcol { 
  margin-right: 471px;
  float:right;
} 

HTML:

<div class="left column_left" style="height: 100%; overflow: hidden; z-index: -1;">
<div id="leftcol" style="height: 100%; min-width: 471px;">
<div style="width: 770px; height: 646px; background-image: url("myimage"); background-repeat: no-repeat;"/>

如果我使用除 IE7 之外的任何浏览器并缩小浏览器窗口,左侧图像将从左侧开始正确隐藏。

在 IE7 中,内容 div 将与图像重叠,而不是将图像从屏幕左侧溢出。

如何在 IE7 中解决此问题?

这是该问题的一个工作示例:http://www.ottawatravellers.ca

Okay, so I have a layout with various divs which are nested.

Essentially, I have a left image background with a centered content area and a right image.

I would like to have the images as close to the content as possible, regardless of the width of the page. So the left image is floating right in this case. I'm using margins in order to properly line up the left image with the left hand side of the content.

CSS

.left { 
  left: 0; 
} 

.column_left { 
  width: 50%; 
  position: absolute; 
  top: 0; 
  text-align: right;
}

#leftcol { 
  margin-right: 471px;
  float:right;
} 

HTML:

<div class="left column_left" style="height: 100%; overflow: hidden; z-index: -1;">
<div id="leftcol" style="height: 100%; min-width: 471px;">
<div style="width: 770px; height: 646px; background-image: url("myimage"); background-repeat: no-repeat;"/>

If I use anything except IE7 and shrink my browser window, the left image will properly hide starting from the left hand side.

In IE7 the content div will overlap the image instead of overflowing the image off of the screen to the left.

How can I fix this in IE7?

Here's a working example of the problem: http://www.ottawatravellers.ca

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

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

发布评论

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

评论(1

黯然 2025-01-14 15:35:48

在图像的 css 中尝试以下操作:

<div style="width: 770px; height: 646px; background:url("myimage") center left no-repeat;"/>

Try this within the css for the image:

<div style="width: 770px; height: 646px; background:url("myimage") center left no-repeat;"/>
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文