我有一个固定位置(顶部面板)的 div,它还应在最右侧包含一个设置菜单(当前通过浮动)。
将鼠标悬停在设置图像上时,我想在图像下方显示一个菜单。我希望菜单像图像一样与右侧对齐。
<div id="panel" style="position:fixed">
<panel-entry 1>
<panel-entry 2>
<panel-entry n>
<div id="settings" style="float:right/snapped to the right side>
<img src=settings>
<ul>
<li>setting 1</li>
<li>setting 2</li>
<li>setting n</li>
</ul>
</div>
</div>
非常感谢任何使用 jQuery 的想法,请随时重新排列任何 html。