<html>
<head>
<meta charset="gb2312">
<title>无标题文档</title>
<style type="text/css">
body, ul, li {
margin: 0px
padding: 0px
}
ul {
background-color: #999
height: 140px
width: 100%
-webkit-box-sizing: border-box
-moz-box-sizing: border-box
padding: 0px 10px
}
li {
background-color: #CCC
list-style-type: none
margin: 10px 0px 10px 1px
height: 50px
float: left
width: 25%
-webkit-box-sizing: border-box
-moz-box-sizing: border-box
}
li:nth-child(1) {
margin-left: -3px
}
li:nth-child(5) {
margin-left: -3px
}
</style>
</head>
<body>
<ul>
<li>文字</li>
<li>文字</li>
<li>文字</li>
<li>文字</li>
<li>文字</li>
<li>文字</li>
<li>文字</li>
<li>文字</li>
</ul>
</body>
</html>
你是要这种效果么?
<!DOCTYPE html><html lang="en">
<head>
<meta charset="UTF-8">
<title>景安</title>
</head>
<style type="text/css">
.head{width: 1000pxheight: 200pxmargin:0 auto}
.head-a{width: 30%height: 200pxbackground: bluefloat: left}
.head-b{width: 70%height: 200pxbackground: orangefloat: right}
</style>
<body>
<div class="head">
<div class="head-a"></div>
<div class="head-b"></div>
</div>
</body>
</html>
我们可以使用width:30%和width:70%这样的形式来设置百分比
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)