您可以在此处查看我的网页
http://209.140.27.232/~ashleyo/portfolio.html
我似乎无法弄清楚我的CSS有什么问题。看来隐藏的容器与我的内容重叠,所以我不能点击图像,除了似乎在容器外的底部图像
答案 0 :(得分:3)
删除 #content
id
z-index -1
和
现在在z-index
0
#content
id
就像这样
#content{
z-index:0;
}
答案 1 :(得分:0)
希望这可以帮助你:)
实际上这里是s neither a need of this "z-index" for CONTENT
的DIV,并且CONTAINER s DIV as there
的“高度”都不需要z-index和高度可以自动增长。
只需删除这些属性。
#content{
z-index:0;
}
#container{
height: 500px;
}
如果你想要,你可以用这个CSS属性限制你的div最大高度
#container{
max-height: 500px;
}