Indenting 2nd line in paragr

hi,

how can I indent 2nd line (and all subsequent lines) in a paragraph, but not the first line? I know there’s a way to do this in CSS, but I don’t remember…

thank you…

ah there is a trick to this, but it’s just that: a trick. You CANT target second+lines , however you can reverse your effect on the first line. so if you wanted everything other than the first line to appear “indented” by 1em, do:

 .outdent p:first-line{text-indent:-1em;
padding-left:1em; /* to give room for the text;, otherwise it will spill out of the container*/
}

Hope that helps.