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.
嗨,伙计们,我正在研究 WordPress 主题,我已将小部件区域从页面底部移至右上角。这不是问题,问题在于当我扩展小部件区域时,它会将所有页面内容向下移动,这是我希望尽可能避免的事情。
任何帮助都会很棒。
一些额外的信息:
我正在使用旋转主题。编辑:2013 年 8 月 7 日
Aaron Lee:我也在使用 Z-index,但它仍然会向下移动内容。
修复它涉及到我相对于绝对值的变化,这允许流血到其他 div 中。谢谢 Aaron lee 你的回答是对的
您可以尝试将小部件区域的 z-index 设置得更高,以便它在页面顶部分层,因此在移动它的位置时不应该影响其他元素。
.classForWidget{ z-index:999; }
在那里设置它应该会有所帮助,这是假设您正在更改实时页面上小部件的大小/位置,例如在可调整的 div 等中。