IE7 中图像的负绝对定位
我有一个网站,其图像绝对位于标题中。看起来它在除 IE6/7 之外的所有地方都可以工作。我的图像绝对定位在具有相对定位的标题内。图像继续压低标题的高度。
/*div*/
#header{padding:0;overflow:visible;position:relative;min-height:140px;margin:0;}
/*image*/
#bod{position:absolute;top:0px;left:-95px;}
我尝试更改为固定高度,但这搞砸了右侧的购物车项目。
该网站是greatcaesars.com。
如果有人对我可以采取哪些措施来解决此问题提出建议,我将不胜感激。
I have a website with an image that is absolutely positioned in the header. It looks like it's working everywhere but IE6/7. My image is positioned absolutely within a header that has relative positioning. The image continues to push down the height of the header.
/*div*/
#header{padding:0;overflow:visible;position:relative;min-height:140px;margin:0;}
/*image*/
#bod{position:absolute;top:0px;left:-95px;}
I tried to change to a fixed height but that screwed up the cart item on the right hand side.
The website is greatcaesars.com.
If anyone has a suggestion on what I might do to fix this, I'd appreciate it.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
在旧版本的 IE 中,高度的处理方式很像 min-height,而 min-height 根本不起作用。
试试这个:
使用 >指示直接子级,旧版本的 IE 无法识别。
In older versions of IE, height is treated a lot like min-height, and min-height doesn't work at all.
Try this:
The use of > to indicate immediate children, isn't recognised by older versions of IE.