1
我試圖做出響應式頁腳而不使用引導程序。只是CSS,但東西不對。頁腳中的按鈕也是圖片而不是文字鏈接。 頁腳的結構是製作響應式頁腳與內部圖像
<div id="footer">
<ul>
<li><a href=""><img src="images/button.png" width="221" height="61" id="Image26"></a> </li>
<li><a href=""><img src="images/button.png" width="221" height="61" id="Image27"></a></li>
<li><a href=""><img src="images/button.png" width="221" height="61" id="Image25"></a> </li>
<li><a href=""><img src="images/button.png" width="221" height="61" id="Image24"></a></li>
</ul>
<p>Copyright © | all rights reserved.</p>
</div>
這是頁腳的CSS
#footer{
background: url(../images/bg-footer.png) repeat-x center top;
min-height: 300px;
margin-top: -45px;
overflow: hidden;
background-position-x: -15px;
}
#footer ul {
list-style: none;
margin: 50px auto 0;
overflow: hidden;
padding: 0;
width: 960px;
}
#footer ul li {
float: left;
height: 60px;
line-height: 60px;
margin: 0 0 0 25px;
width: 220px;
}
#footer ul li:first-child {
margin: 0;
}
#footer ul li a {
background: url(../images/bg-menu1.png) no-repeat 0 -70px;
color: #2B0D05;
display: block;
font-family: 'PlayballRegular';
font-size: 30px;
text-align: center;
text-decoration: none;
}
#footer ul li.current a,
#footer ul li a:hover {
background: url(../images/bg-menu1.png) no-repeat 0 0;
font-family: PlayballRegular;
}
#footer p {
margin: 80px 0 0;
text-align: center;
text-transform: lowercase;
}
結果是,當我調整窗口有三個按鈕,而不是4和<p></p>
變得不可見。
這是我到目前爲止嘗試的JSFFIDLE。
此解決該問題與圖像的數量。 '
文字
'仍然不可見 – Stan只需一分鐘,我只是忘記了那麼這個花花公子的老闆 –
@Stan看看編輯的答案。 –