I am trying to make "vertical rule" on my webpage by repeating a 1x1 pixel image on the y-axis. It works perfectly in FF and Chrome(haven't tested in safari) but fails miserably in IE. In FF it spans the entire div 95% as specified in the css, but in IE it goes down about half an inch and stops.
Heres the link to show visually what is happening.
Here is my css for the "vertical rule"
Any ideas?
Thanks
Heres the link to show visually what is happening.
Here is my css for the "vertical rule"
Code:
div#vr {
height: 95%;
background-image: url('images/hr.jpg');
background-repeat: repeat-y;
padding-top: 5px;
padding-left: 5px;
padding-right: 5px;
position: absolute;
}
Thanks
Comment