2017-03-17 42 views
-2

我無法在CSS文檔中更改頁腳背景顏色。如何更改CSS中的頁腳背景顏色?

footer{ background-color: lightblue; text-align: center; } 

我也不能改變旁邊的背景顏色。

aside{ background-color: lightgray; } 

我真的很感謝幫助。

+2

的可能重複[我怎樣才能改變CSS頁腳的背景顏色(http://stackoverflow.com/questions/28245492/how-can-i-您可以提供的其他任何代碼 – BioGenX

+1

更改背景顏色的頁腳在css) html也許?在jsfiddle上彈出它總是一個不錯的選擇 – The4thIceman

回答

0

您可以在頁腳內使用div。參見下文小提琴:

.site-footer { 
 
    background: orange; 
 
} 
 

 
#footer-content { 
 
    background: red; 
 
}
<footer class="site-footer"> 
 
    <div id="footer-content"> 
 
    <p>Copyright 2017 @ Domain - All Rights Reserved </p> 
 
    </div> 
 
</footer>