我对 CSS 和 jQuery 有点陌生。我正在尝试在网站上定位图块,如下所示:
我一直在尝试使用 CSS 和 jQuery Masonry,但我得到的最接近的是这样的:
任何人都有任何线索,我怎样才能得到这样的瓷砖定位。
<body>
<nav id="container">
<div class="t1">1</div>
<div class="t2">2</div>
<div class="t3">3</div>
<div class="t4">4</div>
<div class="t5">5</div>
<div class="mi">MIDDLE</div>
<div class="t6">6</div>
<div class="t7">7</div>
<div class="t8">8</div>
<div class="t9">9</div>
<div class="t10">10</div>
</div>
</div>
</nav>
CSS
#container {
margin:auto;
cursor:pointer;
width:600px;
margin-top:140px;
}
.t1, .t2 {
padding:8px;
height:120px;
width:300px;
float:left;
background-color:orange;
border:black thin solid;
}
.t3, .t4, .t5 {
padding:8px;
height:120px;
width:240px;
float:left;
background-color:orange;
border:black thin solid;
}
.t6, .t7, .t8 {
padding:8px;
height:120px;
width:30%;
float:left;
background-color:orange;
border:black thin solid;
}
.t9, .t10 {
padding:8px;
height:120px;
width:300px;
float:left;
background-color:orange;
border:black thin solid;
}
.mi {
height:360px;
width:400px;
background-color:blue;
float:left;
}