如何设置一个宽度为1/6的div?

<!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>


慕运维7130634
浏览 1323回答 1
1回答

情若自控3943916

*{    margin: 0;    padding: 0;}.box{    display: flex;    width: 100%;    height: 200px;    border: 1px solid #ccc;}.box_box{    flex: 1;    height: 100%;    background: #ffe9e0;    float: left;    margin-right: 5px;}.box_box:last-child{    margin-right: 0px;}css部分,其余没动
打开App,查看更多内容
随时随地看视频慕课网APP