2017-08-22 139 views
0

底部填充,不DIV

#Text { 
 
    font-size: 60px; 
 
    text-align: center; 
 
    margin: 0 auto; 
 
    background: white; 
 
    width: 750px; 
 
    height: 750px; 
 
    padding-bottom: 2cm; 
 
}
<div id="Text"> 
 
    I am groot! 
 
</div>

工作這就是它看起來像右NOW-

Right now

+0

根據您的代碼運行片段,並更新問題的確切位置。我找不到任何... – Dekel

+1

你給它一個明確的高度,所以你不會看到很多的底部填充。你期望發生什麼? –

+1

它工作正常。填充是綠色的http://i.imgur.com/KqL0rY6.png –

回答

0

你有一個高空。您可以刪除高度,然後運行填充或提供超過750像素,而不是2釐米。

#Text { 
    font-size: 60px; 
    text-align: center; 
    margin: 0 auto; 
    background: white; 
    width: 750px; 
    height: 750px; 
    padding-bottom: 1200px; 
    background-color: red; 
} 

#Text { 
    font-size: 60px; 
    text-align: center; 
    margin: 0 auto; 
    background: white; 
    width: 750px; 
    padding-bottom: 200px; 
    background-color: red; 
} 

UPDATE:

在你這也適用。