Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我目前正在开发一个网站,但我面临一个小问题。
问题是在 Google Chrome、Firefox 和 Safari 上,我无法选择文本,也无法单击页面中间的链接。
但在 IE 10 中,我可以选择文本或单击链接。
可以通过右键单击然后“查看页面源”来获得源:)
有人知道我为什么会有这种奇怪的行为吗?我认为这是因为顶部 div 与中间 div 重叠,但我不知道如何解决它:(
非常感谢 !
您需要在页脚和页眉之间的#middlediv 内移动所有 div 及其所有内容,如下所示:#wrapper
#middle
#wrapper
<div id="wrapper"> <header></header> <div id="middle"></div> <footer></footer> </div>
然后您需要将z-index:999;css 添加到 div #top。
z-index:999;
#top