在CSS的前选择器之后创建一个正确的文本框

时间:2014-04-07 01:38:06

标签: css textbox alignment selector

目的: 使文本从第一行开始的位置开始。 的

推荐语言:
CSS和HTML

示例: Example

最终结果: enter image description here

1 个答案:

答案 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/

假设这是你要做的事。