私はCSSとjQueryが初めてです。次のように、Web サイトにタイルを配置しようとしています。
私は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;
}