width设置方式
.copyright_content li {
list-style-type: none;
float: left;
width: 20%;
background: url(../images/line.png) no-repeat right center;
text-align: center;
line-height: 30px;
}
为啥width设置为20%的时候子列表是水平显示了?设置为width=200px的话就会垂直显示
.copyright_content li {
list-style-type: none;
float: left;
width: 20%;
background: url(../images/line.png) no-repeat right center;
text-align: center;
line-height: 30px;
}
为啥width设置为20%的时候子列表是水平显示了?设置为width=200px的话就会垂直显示
2017-11-23
举报