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

WBOY
Release: 2016-06-21 09:06:16
Original
1360 people have browsed it


         

  •           

                      
    • ...

    •           

         


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


回复讨论(解决方案)

你给一级菜单设定一个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>
Copy after login
Copy after login

你给一级菜单设定一个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>
Copy after login
Copy after login



抱歉,第二个忘记打:hover了。
Related labels:
source:php.cn
Statement of this Website
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
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!