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.
我正在尝试让 Facebook“喜欢”按钮 xfbml 对话覆盖<div>网站中的 a,但无论我对 z-index 和溢出做什么:可见,对话都不会<div>在 Safari 5 和边缘被隐藏。
<div>
这是一个小提琴:http: //jsfiddle.net/Bs4aJ/
有任何想法吗?谢谢
overflow:hidden正在#main剪辑它。您可以使用“clearfix”技巧而不是使用overflow:hidden来#main包装其浮动子项:
overflow:hidden
#main
#main:after { content: "."; display: block; height: 0; clear: both; visibility: hidden; zoom: 1; }