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.
甚至可能吗?我在“固定”处为我的网站位置做了一个标题。i 也有一个位于“相对”的图像。每当我滚动网站时......我注意到图像在标题“上方”分层。甚至我放置的 twitter 个人资料小部件也在标题上方。它们都与标题重叠,我不希望那样。关于如何解决我的问题的任何想法?请帮忙!
顺便说一句....我听说“固定”在 Android 中是错误的,尤其是在我制作我的网站的地方。
您需要使用 z-index 来设置分层,如下所示:
.menu {position:fixed; z-index:99999} .content {position:relative; z-index:1}
然后,您可以使用中间的数字对其进行微调。