0

我在 css 中给出了 height:35px,它在 linux 文本编辑器中工作正常,但在 netbeans 中显示错误。

#hori li
{
padding:0;
text-align:center;
width:7em; 
float:left;
list-style:none
height:35px;
margin-left:15px;
background:#38ACEC;
-moz-border-radius: 70px;
border-radius: 70px;
}
4

1 回答 1

1

关闭你的list-style:none. 像这样写list-style:none;

#hori li
{
padding:0;
text-align:center;
width:7em; 
float:left;
list-style:none;
height:35px;
margin-left:15px;
background:#38ACEC;
-moz-border-radius: 70px;
border-radius: 70px;
}
于 2012-04-12T06:43:53.607 回答