目的:
使文本从第一行开始的位置开始。
的
推荐语言: CSS和HTML
示例:
最终结果:
答案 0 :(得分:0)
您可以将display: block;
添加到:选择器之前。
p:before {
content: "This is inside the boxd and in the :before selector";
background: green;
color: white;
border: 1px solid transparent;
border-radius: 5px;
padding-right: 100px;
text-align: center;
display: block;
}
这是一个小提琴http://jsfiddle.net/4XY2R/
假设这是你要做的事。