Home >Web Front-end >HTML Tutorial >div+css简单的鼠标经过_html/css_WEB-ITnose

div+css简单的鼠标经过_html/css_WEB-ITnose

WBOY
WBOYOriginal
2016-06-21 09:06:161432browse


         

  •           

                      
    • ...

    •           

         


如何让二级菜单-鼠标经过?


回复讨论(解决方案)

你给一级菜单设定一个ID就行了呗。例如 

<head> <style type="text/css">    #menu #1:hover{}  /*悬停在第一级标签触发*/    #menu #1 ul li {}  /*悬停在第二级标签触发*/</style></head><body>      <ul id="1">		<li>			<ul>				<li>				</li>			</ul>		</li>	</ul></body>

你给一级菜单设定一个ID就行了呗。例如 

<head> <style type="text/css">    #menu #1:hover{}  /*悬停在第一级标签触发*/    #menu #1 ul li {}  /*悬停在第二级标签触发*/</style></head><body>      <ul id="1">		<li>			<ul>				<li>				</li>			</ul>		</li>	</ul></body>



抱歉,第二个忘记打:hover了。
Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn