css:在一个段落中的行之间创建空白

时间:2013-02-28 18:46:20

标签: css

我有一个可变宽度的多行段落。 每行的背景应该是纯色,但在两行之间,我希望看到背景图像。

实施例: http://piccsy.com/2012/03/the-ysp-herself

我尝试设置line-height但这不会在行之间创建空间。

1 个答案:

答案 0 :(得分:3)

试试这个:

span {
    background-color:grey;
    font-size:14px;
    line-height:18px;
}

Fiddled here