Home  >  Article  >  Web Front-end  >  如何去掉导航栏中的小实心圆圈_html/css_WEB-ITnose

如何去掉导航栏中的小实心圆圈_html/css_WEB-ITnose

WBOY
WBOYOriginal
2016-06-21 09:42:432747browse

本帖最后由 JQJ007 于 2013-04-17 12:25:20 编辑

导航 CSS



html:
nbsp;html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">



maple










css:
#nav li {
float:left;
}

#nav li a {
color:#000000;
text-decoration:none;
padding-top;4px;
display:block;
width:97px;
height:22px;
text-align:center;
background-color:#ececec;
margin-left:2px;
}

#nav li a:hover {
background-color:#bbbbbb;
color:#ffffff;
}

回复讨论(解决方案)

#nav li {
float:left;
list-style: none;
}

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