我想要一个只使用 CSS 而不使用 JavaScript 的干净整洁的解决方案。我最感兴趣的是/如何这需要z-index
在<menu>
和其他元素上进行设置,以及是否有不需要z-index
设置的干净解决方案,尤其是。不在“内容”标签上。当然,菜单后面的内容在菜单打开时不应该改变位置。
所需的(示例性)html 结构:
<menu>
<ul>
<li>Item 1
<li>Item 2
<li>BigItm3
<li>Item 4
<li>Item 5
<li>LastItm
</ul>
</menu>
<p>Text</p>
<p>MoreText</p>
<p style="float:left">Floating</p>
<img style="position:absolute; left:100px; top: 40px;"
src="http://tinyurl.com/jaheira-dance">
<form><button>OK</button><br><textarea>text</textarea></form>
<p>HTML content (e.g., loaded + injected via ajax)</p>
<iframe>
所需的视觉行为: 1. 未悬停在菜单上时
--------
| Menu |
--------
Lorem ipsum dolor
sit amet ==========
===== Lorem | iframe |
|img| ipsum | |
===== dolor ==========
所需的视觉行为: 2. 将鼠标悬停在菜单上时
-------------
| Menu |
| |
Lo| * Item 1 |or
si| * Item 2 |=======
==| * BigItm3 |frame |
|i| * Item 4 | |
==| * Item 5 |=======
| * LastItm |
=============
我已经拥有的:
menu:before { content: "Menu"; } /* always display the menu title */
menu {
float: left;
height: 16px;
padding: 1px;
margin: 0px;
font-height: 10px;
margin-left: 20px;
border: solid 1px gray;
}
menu>ul { display: none; } /* hide menu items when closed */
menu:hover>ul { display: block; } /* show items when open */
menu:hover {
height: auto; /* expand menu */
position: fixed; /* move other elements behind menu */
}
menu + * { clear: both; } /* move following content below menu */