这是我的小提琴:http: //jsfiddle.net/xxgkB/
我有一个<div>
有一个孩子的容器,一个<p>
为什么text-indent
将段落的显示值从块更改为行内块时值会翻倍?
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 */
}