I want to use a similar style for the Deep Tree used in the aurigma site.
Using the violet backgroud and the white line dividing each item ( with a 100% width )
I´ve added this lines to the TreeNode style
Code:.TreeNode
{
margin-left: -15px;
font-size: 8pt;
border-width: 1px;
border-color: White;
border-style: solid;
/* I´ve added the properties bellow*/
border-top-width: 1px;
border-top-color: #CCCCCC;
border-top-style: solid;
width:100%;
}
MY PROBLEM IS : THE 100% WIDTH WORKS PROPERLY IN INTERNET EXPLORER BUT USING MOZILLA OR NETSCAPE THE LINE WIDTH IS LONGER AS THE NODE STRING LENGHT
THANKS FOR YOUR HELP