このボックス モデルを作成しましたが、列に同じボックスを 3 つ追加したいと思います。
CSS:
#box {
}
#box .circle
{
width:120px;
height:120px;
border-radius:50%;
font-size:2em;
color:#fff;
line-height:120px;
text-align:center;
background-color:yellow;
left:75px;
top:95px;
position: relative;
z-index: 1;
}
#box .box1 {
-webkit-box-sizing: border-box; /* Safari/Chrome, other WebKit */
-moz-box-sizing: border-box; /* Firefox, other Gecko */
box-sizing: border-box; /* Opera/IE 8+ */
width:270px;
height:130px;
top:160px;
left:1px;
background-color:black;
padding:70px 40px 15px 40px;
position:absolute;
}
#box .box2 {
-webkit-box-sizing: border-box; /* Safari/Chrome, other WebKit */
-moz-box-sizing: border-box; /* Firefox, other Gecko */
box-sizing: border-box; /* Opera/IE 8+ */
width:270px;
height:250px;
top:280;
left:1px;
background-color:blue;
padding:70px 40px 15px 40px;
position:absolute;
}
#box .box3 {
-webkit-box-sizing: border-box; /* Safari/Chrome, other WebKit */
-moz-box-sizing: border-box; /* Firefox, other Gecko */
box-sizing: border-box; /* Opera/IE 8+ */
width:270px;
height:70px;
top:530px;
left:1px;
background-color:black;
padding:70px 40px 15px 40px;
position:absolute;
}
そしてマークアップ:
<body>
<div id="box">
<div class="circle">10GB</div>
<div class="box1"></div>
<div class="box2"></div>
<div class="box3"></div>
</div>
</form>
</body>