One more CSS thing
Can anyone help me with setting up my CSS so that all my paragraphs of text are indented, as proper style demands?
This work, unless otherwise expressly stated, is licensed under a Creative Commons Attribution-Noncommercial-No Derivative Works 3.0 License.









17 June 2004 at 3:44 pm.
The CSS rule:
p {
text-indent: 5em;
}
should indent the first line of a paragraph by five times the standard character spacing. My memory is phasing out on whether that works in all browsers.