Can anyone help me with setting up my CSS so that all my paragraphs of text are indented, as proper style demands?
This entry was posted on Thursday, 17 June 2004 at 2:52 pm and is filed under OnTheWeb.
You can follow any responses to this entry through the RSS 2.0 feed.
Both comments and pings are currently closed.
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.