2014-09-27 48 views
0

超級基本的問題,我是新來的CSS ...如何設置p幅度的部分

在我的樣式表我有:

#topheader { 
     position: absolute; 
     width: 100%; 
     height: 100px; 
     background-color: #D1E6DA; 
     font-size: 200%; 
} 

如何添加:

p { 
    margin: 20px; 
} 

#topheader裏面(不是整個頁面)?

+0

這的確是一個超級的基本問題,並驚訝upvotes對此類問題... – 2014-09-27 17:09:23

回答

3
#topheader p{ 
    margin: 20px; 
} 

看到#topheaderp之間的空間?這意味着p在topheader內。

您需要按照原樣離開#topheader { },並在其中添加另一個p

所以你具備以下條件:

#topheader { 
    position: absolute; 
    width: 100%; 
    height: 100px; 
    background-color: #D1E6DA; 
    font-size: 200%; 
} 
#topheader p{ 
    margin: 20px; 
} 
+0

完美,謝謝! – dlofrodloh 2014-09-27 17:20:57