Hi,
is it possible to create a class that will give height of only 1px to your <Div>. I want to have a <DIV> with only one
pix height so that it shows only its border so that i could use that <div> to give bottom border to my last item in the menu (I do not want to give bottom border to all the menu items because than it becomes double border bcz I already have top border..(top border + bottom border= quite thick border) and does not look nice.
i tried the follwing "fill" class to reduce the side of my div but it does not work, I will appreciate your help.
__________________________
div.navilayer div {
width: 140px;
border-top-width: 1px;
border-top-style: solid;
border-top-color: #000000;
padding-top: 5px;
padding-bottom: 5px;
padding-left: 5px;
font: 10px verdana;
background: #FFFFFF;
border-right: 1px;
border-right-style: solid;
border-left: 1px;
border-left-style: solid;
font-weight:bold;
}
div.navilayer div.fill {
border-top-width: 1px;
border-top-style: solid;
border-top-color: black;
border-left: 0px;
border-right: 0px;
background: #FFFFE7;
padding-top: 0px;
padding-bottom: 0px;
height: 1px;
}
___________________________
Thanks
is it possible to create a class that will give height of only 1px to your <Div>. I want to have a <DIV> with only one
pix height so that it shows only its border so that i could use that <div> to give bottom border to my last item in the menu (I do not want to give bottom border to all the menu items because than it becomes double border bcz I already have top border..(top border + bottom border= quite thick border) and does not look nice.
i tried the follwing "fill" class to reduce the side of my div but it does not work, I will appreciate your help.
__________________________
div.navilayer div {
width: 140px;
border-top-width: 1px;
border-top-style: solid;
border-top-color: #000000;
padding-top: 5px;
padding-bottom: 5px;
padding-left: 5px;
font: 10px verdana;
background: #FFFFFF;
border-right: 1px;
border-right-style: solid;
border-left: 1px;
border-left-style: solid;
font-weight:bold;
}
div.navilayer div.fill {
border-top-width: 1px;
border-top-style: solid;
border-top-color: black;
border-left: 0px;
border-right: 0px;
background: #FFFFE7;
padding-top: 0px;
padding-bottom: 0px;
height: 1px;
}
___________________________
Thanks