#container #menu ul{
width:1000px
list-style:none
margin:0 auto
padding:0
}
#container #menu li{
text-indent:60px
float: left
margin:11px 20px 20px 0
}
给两种方法:第一种:百分比。使用均分的百分比宽度。
第二种:css3弹性布局。父级给定宽度display:flexflex-direction:row子元素全部设置flex:1;
#container #menu ul{
width:1000px
list-style:none
margin:0 auto
padding:0
}
#container #menu li{
text-indent:60px
float: left
margin:11px 20px 20px 0
}
给两种方法:第一种:百分比。使用均分的百分比宽度。
第二种:css3弹性布局。父级给定宽度display:flexflex-direction:row子元素全部设置flex:1;