Hanging Indent CSS
This thread suggest mixing the CSS text-indent and margin to create a hanging indent in a web page with cascading style sheets.
http://groups-beta.google.com/group/macromedia.dreamweaver/browse_thread/thread/12b24ea243cb4103/cb2eae652730165c?q=css+hanging+index&rnum=1&hl=en#cb2eae652730165c
"Add this to your style sheet:
.hindent{
margin: 1em 2em;
text-indent: -2em;
}
Apply the "hindent" class to the content:
<p class="hindent">text here ...
Gary"