IE 6.0 z 索引问题
中遇到 CSS Z-index 属性的问题
我在 IE 6.0 HTML
<div id="banner"></div>
CSS
#banner{
background:url(pix/banner.PNG) top no-repeat;
z-index = -1;
}
URL : http://www. whizlabs.com/examprep/
在 IE 6.0 中,它会在女孩的额头上显示一条线,显示在页面顶部的横幅中。 在其他浏览器中,线路不会出现。 我该如何解决这个问题?
请帮我。
谢谢 德维什中号
I am facing an issue with Z-index property of CSS in IE 6.0
HTML
<div id="banner"></div>
CSS
#banner{
background:url(pix/banner.PNG) top no-repeat;
z-index = -1;
}
URL: http://www.whizlabs.com/examprep/
In IE 6.0, it shows a line on the forehead of girl, showing in the banner on the top of the page. In other browsers, line is not coming. How can i resolve this issue ?
Please help me.
Thanks
Devesh M
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(5)
实在没有理由把这个女孩分成不同的形象。
只需使用单个图像,然后将其相对于包装器的右上角定位
然后确保它位于标题 div 的下方
There is really no reason to break the girl up into separate images.
Just use a single image and then position it relative to the top right of your wrapper
Then make sure that the is just under your header div
Z-index 对静态定位的元素没有影响,因此您需要将 css
position
属性设置为其他内容,例如relative
,但我不认为您在这种情况下应该使用 z-index。为了快速修复,您可以尝试这样的操作:
以上技巧仅适用于 MSIE6。
Z-index has no effect on statically positioned elements, therefore you would need to set the css
position
property to something else, likerelative
, but I don't think that you should use z-index in this case.For a quick fix though you can try something like this:
This above trick only applies to MSIE6.
尝试将线条的标记放在女孩的标记之前,并使用 css 放置两者。 在类似的情况下,它通常对我有用。
Try puting the markup of the line before the markup of the girl, and place both using css. It usually worked for me in similar cases.
另外,对于 Z-Index,请确保使用从 1 开始的数字。
如果您在使用某个元素时遇到问题,请尝试为其提供 Position 属性,并为其父级提供 Position 和 Z-Index。
Also with Z-Index make sure to use numbers starting at 1.
If you are having trouble with an element, try giving it a Position property as well as give its parent a Position and a Z-Index.
z-index 仅适用于定位元素。
另外,您只能交换同一元素所包含的所有元素的深度 - 嵌套元素(一个在另一个里面)不能跳出其嵌套!
z-index only works on positioned elements.
Plus, you can only swap the depths of elements that are all contained by the same element - nested elements (one inside the other) cannot jump out of their nesting!