Div ul li 中怎样设置,让导航条横成一排.

下图中的导航条没有横成一排很乱.代码如下
2025-01-03 01:37:19
推荐回答(3个)
回答1:

加入css代码:

#header_navi ul li {float:left; width:80px; height:30px; text-align:center; line-height:30px; list-style:none;}

备注:width和height的值具体要根据您的导航图片宽度进行设置。

回答2:

float:left 主要是这个,但是要注意width的宽度计算,超出了就会2行了

回答3:

dispaly:block float:left