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.
我试图修复一个只出现在 CHROME 中的小错误,这让我很头疼。 在我网站的索引上,我有 3 个带有小图像的容器,它们在 IE 和 FF 上看起来不错,但在 CHROME 上,第二个容器出现了位移,我不知道如何修复。这第二个容器有点问题,因为它有一些鼠标悬停效果,大气球作为工具提示,如果我设法将所有 3 个容器放在同一行,工具提示将仅显示部分。
请看一下,如果可以的话,给我一些提示。
提前致谢。
你的标记相当精神分裂。您正试图与这些元素position:relative;结合使用display:inline并float:定位这些元素。
position:relative;
display:inline
float:
选择一种方法并始终如一地使用它。
我建议浮动它们,或使用display:inline-block;.
display:inline-block;