<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title></title>
<style type="text/css">
*{
margin: 0;
padding: 0;
}
.box{
width: 100%;
height: 200px;
border: 1px solid #ccc;
}
.box_box{
height: 100%;
background: #FF4400;
float: left;
width: ;/*我想把每个div的宽都设成1/6的宽度,怎么写?*/
}
</style>
</head>
<body>
<div class="box">
<div class="box_box"></div>
<div class="box_box"></div>
<div class="box_box"></div>
<div class="box_box"></div>
<div class="box_box"></div>
<div class="box_box"></div>
</div>
</body>
</html>
情若自控3943916