你可以在这里看到我的网页
http://209.140.27.232/~ashleyo/portfolio.html
我似乎无法弄清楚我的 CSS 有什么问题。似乎一个不可见的容器与我的内容重叠,所以我无法单击图像,除了看起来在容器之外的底部图像
删除 #content
id
z-index -1
和
现在添加 z-index
0
您的#content
id
像这样
#content{
z-index:0;
}
希望这可以帮助你:)
实际上这里s neither a need of this "z-index" for CONTENT
的 DIV 和 CONTAINERs DIV as there
的“高度”都不需要 z-index 和高度可以自动增长。
只需删除这些属性。
#content{
z-index:0;
}
#container{
height: 500px;
}
如果您愿意,可以使用此 CSS 属性限制您的 div 的最大高度
#container{
max-height: 500px;
}