更新時間:2016年04月18日14時25分 來源:傳智播客UI培訓學院 瀏覽次數(shù):
<style type="text/css">
*{
margin:0;
padding:0;
}
div{
width: 400px;
display: flex;
margin:100px auto 0;
border:1px solid #ccc;
}
p{
height: 40px;
width: 200px;
}
p:nth-child(1){
background: lightblue;
}
p:nth-child(2){
background: orange;
}
p:nth-child(3){
background: seagreen;
}
</style>
</head>
<body>
<div>
<p></p>
<p></p>
<p></p>
</div>
可以設置相應的基數(shù),如果子元素的基數(shù)和大于父元素總寬則需要收縮,如果小于就按著相應的比例擴展。
<html>
<head>
<meta charset="UTF-8">
<title>伸縮盒模型</title>
<style type="text/css">
*{
margin:0;
padding:0;
}
div{
display: flex;
width: 400px;
margin:100px auto 0;
border:1px solid #ccc;
}
p{
width: 100px;
height: 40px;
}
p:nth-child(1){
background: lightblue;
}
p:nth-child(2){
flex-grow: 1;
background: orange;
}
p:nth-child(3){
flex-grow: 4;
background: seagreen;
}
</style>
</head>
<body>
<div>
<p></p>
<p></p>
<p></p>
</div>
</body>
</html>