很简单只要设置大一点z-index值即可
.fixbottom{ display:block; position:fixed; bottom:0; left:0; width:100%; height:70px; background-color:#cccccc; z-index:1000;}
后来网页改版,改变了dom结构,发现fixbottom不再浮动 ,解决方法是改变fixbottom的dom层级 让他与main层平行
原因是position:fixed是相对于父节点的
本文共 300 字,大约阅读时间需要 1 分钟。
很简单只要设置大一点z-index值即可
.fixbottom{ display:block; position:fixed; bottom:0; left:0; width:100%; height:70px; background-color:#cccccc; z-index:1000;}
后来网页改版,改变了dom结构,发现fixbottom不再浮动 ,解决方法是改变fixbottom的dom层级 让他与main层平行
原因是position:fixed是相对于父节点的
转载于:https://my.oschina.net/lilugirl2005/blog/412222