Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我在 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; }
关闭你的list-style:none. 像这样写list-style:none;。
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; }