3

これが私のフィドルです:http://jsfiddle.net/xxgkB/

<div>1 つの子を持つコンテナがあります。<p>

text-indent段落の表示値をブロックからインラインブロックに変更すると、値が 2 倍になるのはなぜですか?

HTML :

<div class=container>
    <p>Example Paragraph</p>
</div>

CSS :

div {
    background: slategray;
    height: 2in;
    text-indent: 1in;
    width: 2in;
}

p {
    display: inline-block; /* Notice the change when removing this declaration */
}
4

1 に答える 1