Give paragraph effect through CSS
How to give paragraph effect to my paragraph using CSS?
For example:
This is my paragraph. This is my paragraph. This is my paragraph.
This is my 开发者_StackOverflow社区paragraph. This is my paragraph. This is my paragraph. This is my paragraph.
This is my paragraph. This is my paragraph. This is my paragraph. This is my paragraph.
This is my paragraph. This is my paragraph. This is my paragraph. This is my paragraph.
This is my paragraph. This is my paragraph. This is my paragraph. This is my paragraph. This is my paragraph. This is my paragraph. This is my paragraph. This is my paragraph.
This is my paragraph. This is my paragraph. This is my paragraph. This is my paragraph.
This is my paragraph. This is my paragraph. This is my paragraph.
I'd like the padding like in the first line.
You can try the text-indent
property.
p { text-indent: 1em; }
See http://reference.sitepoint.com/css/text-indent
Try this
p:first-line { padding-left:10em; }
精彩评论