Re: how to make a bar between rows?

>Anybody know how to make a horizontal bar with a specified color between
>two rows, like this example?

For CSS aware browsers:

<style type="text/css">
.navbar {border-top: 2px blue solid; border-top-width: 2px;
border-color: blue; width: 30%;}
</style>
<p class="navbar">Home</p>
<p class="navbar">About Us</p>
<p class="navbar">Contact</p>

The declaration includes workaround rules for a specific CSS broken
browser. 
-- 
Sue Sims <sue@css.nu>
CSS Pointers Group
<URI:http://css.nu/>

Received on Thursday, 27 May 1999 10:26:30 UTC