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.
这是我正在研究JS Bin的原型。
当鼠标在任何文本输入字段上悬停 1 秒时,我制作了一个弹出框以显示到悬停的元素。现在,我怎样才能让弹出框位于其他元素的顶部,这样它就不会影响其他元素的定位?像工具提示?
似乎我可以使用position()jQuery UI,但我不太清楚如何将其应用于我的特定需求。
position()
您可以将工具提示元素的 css-valueposition设置为。absolute这样,它就从普通的内容流中移除并放在顶部的一个层中。
position
absolute
如果您希望它附加到它的容器元素,然后设置position: relative它。
position: relative