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.
我正在使用带有 6 个<h3>标题和几个<div>子元素的 jQuery Accordion。当我打开所有部分然后再次关闭它们时。手风琴最终位于页面下方约 100 像素处。
<h3>
<div>
有没有办法固定第一个<h3>,以便手风琴总是在同一个地方关闭?
这是我修复它的方法。'top' 和 'left' 参数给出了特定于我的页面的手风琴位置。
#accordion:first-child { position: absolute; top:51px; left:8px; }
在你的 CSS 中,给它一个绝对或固定的位置
h3{ position: absolute; }
或者
h3{ position: fixed; }