作者:Becky30712701 | 来源:互联网 | 2022-10-19 18:52
1> GBWDev..:
#content
由于position:fixed
锚标记的原因,该div从正常DOM绘制流程中移出并位于其上方。
解决此问题的一种简单方法是z-index
对内容设置否定。
#content {
height: 100%;
width: 100%;
position: fixed;
left: 0;
top: 0;
z-index:-1;
}
a {
width: 100%;
}
a:hover {
font-size: 23pt;
}
HOME