CSS - 如何设置 UL 在 LI 中的位置
我有以下包含另一个列表的 HTML 列表结构:
<ul>
<li>a</li>
<li>b
<ul>
<li>b-a</li>
<li>b-b</li>
<li>b-c</li>
</ul>
</li>
<li>c
<ul>
<li>c-a</li>
<li>c-b</li>
</ul>
</li>
<li>d</li>
</ul>
内部 UL 被隐藏,在 鼠标悬停 后它们被设置为可见。我的问题在于,如果我将光标移动到包含内部 UL 的 LI 项目上,那么会显示该内部 UL,但在开始时行,不完全位于 LI 项下(在本例中位于 LI 下,带有单词 b 和 c)。
您能帮我解决一下,如何将内部 UL 设置在包含内部 UL 列表的单词正下方吗?
太感谢了
I have following a HTML structure of list that contains another list:
<ul>
<li>a</li>
<li>b
<ul>
<li>b-a</li>
<li>b-b</li>
<li>b-c</li>
</ul>
</li>
<li>c
<ul>
<li>c-a</li>
<li>c-b</li>
</ul>
</li>
<li>d</li>
</ul>
The inner UL are hidden and after mouseover they are set as visible. My problem consists in if I will move the cursor on LI item that contains inner UL, so this inner UL is displayed, but in the begin line, not exactly under LI item (in this case under LI with the words b and c).
Can you help me, please, how to set the inner UL exactly under the words, that contains inner UL lists?
thank you so much
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
请查看本教程 http://www.seoconsultants.com/css/menus/tutorial/
尝试使用 jquery http://www.noupe.com/tutorial/drop-down-menu-jquery-css.html
Please Checkout this tutorial http://www.seoconsultants.com/css/menus/tutorial/
try this for jquery http://www.noupe.com/tutorial/drop-down-menu-jquery-css.html