我如何得到這個結果沒有最後一個項目行:的CSS盒子中心像iOS主屏幕
margin-right: 30px;
在CSS
,現在我用:
margin-right: 30px;
margin-bottom: 30px;
它應該像IOS主屏幕
http://www4.picturepush.com/photo/a/12640862/img/12640862.png http://www3.picturepush.com/photo/a/12640866/img/12640866.png
HTML:
<div class="home-main">
<a href="t1home" class="item"><h1>Hallo</h1></a>
<a href="t1home" class="item"><h1>Hallo</h1></a>
<a href="t1home" class="item"><h1>Hallo</h1></a>
<a href="t1home" class="item"><h1>Hallo</h1></a>
</div>
CSS:
.home-main {
width: 90%;
max-width: 960px;
min-height: 100px;
margin: 0 auto;
overflow: hidden;
text-align: center;
}
.home-main a {
width: 126px;
min-height: 126px;
max-height: 166px;
margin-right: 30px;
margin-bottom: 30px;
background-color: #777;
float: left;
color: #fff;
text-decoration: none;
}
.home-main a:nth-last-child(1){
margin-right: 0;
}
.home-main a h1 {
width: 100%;
height: 33px;
margin: 0;
margin-top: 126px;
padding-top: 7px;
font-size: 19px;
text-align: center;
background-color: #222;
}
@media screen and (width:320px){
.home-main a:nth-child(even) {
margin-right: 0;
}
}
這取決於你的HTML和其他CSS,你有什麼嘗試?請提供更多代碼。 – Michael 2013-04-08 15:55:25