2017-08-22 6 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>

に動作していないこれは、あなたが高高度を持って

Right now

+0

コードに基づいてスニペットを実行し、そこに問題が何であるかで質問を更新します。私は何も見つけることができません... – Dekel

+1

あなたはそれを明示的な高さを与えているので、あなたは下の詰め物の多くを見ないでしょう。何が起こると思いますか? –

+1

正常に動作しています。パディングは緑色です。http://i.imgur.com/KqL0rY6.png –

答えて

0

NOW-右のように見えるものです。高さを削除してパディングを実行するか、2cmではなく750px以上を与えることができます。

#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:

あなたにそれも動作します。