Text indent after the first line in a paragraph
p {
text-indent: -1em;
padding-left: 1em;
}
You need text-indent
. Normally text-indent
pushes the first line inwards, but if you give it a minus figure and use a positive margin, you can achieve the effect you're after.
text-indent: -10px;
margin-left: 10px