我想克隆谷歌的主頁。我從頁面的頁腳開始,陷入了頁腳中鏈接的對齊。頁腳中的鏈接對齊
我的html代碼:
<div class="footer">
<hr >
<footer >
<a href="" class="advertising">Advertising</a>
<a href="" class="business">Business</a>
<a href="" class="about">About</a>
<a href="" class="privacy">Privacy</a>
<a href="" class="terms">Terms</a>
<a href="" class="settings">Settings</a>
</footer>
</div>
我的CSS代碼:
.footer{
position: absolute;
bottom: 0;
left: 0;
width: 100%
}
footer{
background-color: #F4F6F7;
height: 45px;
}
hr{
border-color: #CCD1D1;
margin-bottom: 0px;
}
.advertising, .business, .about, .privacy, .terms, .settings{
color: #909497;
font-size: 1.2em;
margin-top: 11px; //THIS LINE.
}
.advertising, .business, .about{
margin-left: 40px;
}
.privacy, .terms, .settings{
margin-right: 40px;
float: right;
}
誰能告訴我,爲什麼行 「的margin-top:11像素」 不適用前3個鏈接頁腳(廣告,商業,關於)。頁腳的截圖:
查看下面的答案。 – cosmoonot