<html>
<head>
<meta charset="utf-8">
<title>手册网(www.shouce.ren)
</title>
<style>
.Grid {
display: flex;
}
.Grid-cell {
flex: 1;
}
.Grid-cell.u-full {
flex: 0 0 100%;
}
.Grid-cell.u-1of2 {
flex: 0 0 50%;
}
.Grid-cell.u-1of3 {
flex: 0 0 33.3333%;
}
.Grid-cell.u-1of4 {
flex: 0 0 25%;
}
</style>
</head>
<body>
<div class="Grid">
<div class="Grid-cell u-1of4" style="background:red">aaa
</div>
<div class="Grid-cell" style="background:#46b8da">bbb
</div>
<div class="Grid-cell u-1of3" style="background:yellow">ccc
</div>
</div>
</body>
</html>