Re: In support of the "line space" (nee <hr>)

On Wed, 21 Aug 2002 16:00:19 +0200
Lorenzo De Tomasi <lorenzo.detomasi@libero.it> wrote:

| <section>
|     <section>
|         <section>
|         <p>text</p>
|         <!-- here I want to insert a line break <hr> -->
|         </section>
|         <section>
|         <p>text</p>
|         <!-- here I want to insert a line break <hr> -->
|         </section>
|     </section>
| </section>
| 
| How can I add a line only at the end of the 3rd indented sections?

<style type="text/css">
section section section { border-bottom: 3px dotted black; }
</style>

| Can I have different properties of the line break (as black color for
| the first and blue color for the second)?


<style type="text/css">
section section section.type1 { border-bottom: 3px dotted black; }
section section section.type2 { border-bottom: 1px solid blue; }
</style>

<section>
    <section>
        <section class="type1">
        <p>text</p>
        <!-- here I want to insert a line break <hr> -->
        </section>
        <section class="type2">
        <p>text</p>
        <!-- here I want to insert a line break <hr> -->
        </section>
    </section>
</section>


-- 
Toby A Inkster BSc ARCS
PGP:      http://www.goddamn.co.uk/tobyink/node.cgi?id=12
Web Page: http://www.goddamn.co.uk/tobyink/
IM:       AIM:inka80 ICQ:6622880 YIM:tobyink Jabber:tobyink@a-message.de

UH-OH!!  We're out of AUTOMOBILE PARTS and RUBBER GOODS!

Received on Wednesday, 21 August 2002 13:10:33 UTC