我只是通过使用z-index,无法在ID =“cover”的div顶部获得ID =“cover”的div.
还有其他解决方案吗?
代码来自http://codepen.io/anon/pen/jhgtf:
HTML:
<div ID="cover"></div><div ID="covered"></div>
CSS:
#cover{ position:fixed; wIDth:800px; background:black; height:350px; z-index:10;}#covered{ wIDth:80px; background:yellow; height:50px; z-index:11;}解决方法 你需要在#covered上指定一个位置:
#cover{ position:fixed; wIDth:800px; background:black; height:350px; z-index:10;}#covered{ position: fixed; wIDth:80px; background:yellow; height:50px; z-index:11;}
CodePen example
具有静态(默认)定位的元素不受z-index影响 – 只有具有固定,相对或绝对定位的定位元素.您应该使用哪些内容取决于上下文.
Official z-index specification
总结以上是内存溢出为你收集整理的html – 如何通过z-index覆盖一个div与另一个div全部内容,希望文章能够帮你解决html – 如何通过z-index覆盖一个div与另一个div所遇到的程序开发问题。
如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)