I would like to know if there is a way to have the MARGIN-LEFT depend on the
parent. What I would like is to be able to have:
Some non-indented Text
<P CLASS="indent">Indented text
<P CLASS="indent">Indented twice
</P></P>
Or is there not a way to do that? Also, does netscape have problems with
nested <P> tags?
Thanks,
Joe Mumbauer.
But if you had an element that was class="indent" that could contain
block-level elements that were themselves class="indent", then your style
would indent the children twice.
--
There are two ways of spreading light: to be the candle or the mirror that
reflects it. -Edith Wharton
=-=-=
Steve
-=-=-
"Joe" <mumb...@kutztown.edu> wrote in message
news:#2Xae0SGBHA.1360@tkmsftngp05...
Joe Mumbauer.
<HTML>
<HEAD>
<STYLE>
UL{list-style-type:none; margin-top:0px; margin-bottom:0px;}
</STYLE>
</HEAD>
<BODY>
<UL STYLE="Margin:0px;">
<LI>Paragraph #1 Paragraph #1 Paragraph #1 Paragraph #1 Paragraph #1
Paragraph #1 Paragraph #1 Paragraph #1 Paragraph #1 Paragraph #1 Paragraph
#1
<UL>
<LI>Paragraph #2 Paragraph #2 Paragraph #2 Paragraph #2 Paragraph #2
Paragraph #2 Paragraph #2 Paragraph #2 Paragraph #2 Paragraph #2 Paragraph
#2
<UL>
<LI>Paragraph #3 Paragraph #3 Paragraph #3 Paragraph #3 Paragraph #3
Paragraph #3 Paragraph #3 Paragraph #3 Paragraph #3 Paragraph #3 Paragraph
#3
</UL>
</UL>
</UL>
</BODY>
</HTML>
This will give you a set of paragraphs where the first one is not indented,
and each following one is indented from the previous one.
--
Nathan Sokalski
njsok...@hotmail.com
soka...@kutztown.edu
"Joe" <mumb...@kutztown.edu> wrote in message
news:#2Xae0SGBHA.1360@tkmsftngp05...