Since it is possible to replace a bullet with an image using the list-style-image property is there any way within CSS to replace a horizontal rule with an image?
Thanx G>Apparently not. The HR is a block element, but it does not contain anything.Hi,
I don't know if this is of any use but you could give the <hr /> a background image:
hr {
background-image: url(filename.gif);
background-repeat: repeat;
height: 20px;
width: 100%;
}
PaulThanks, Paul. It's worth a shot. G >http://banners.dollarmachine.com/pic/2014000/hal001.gif (<!-- m --><a class="postlink" href="http://www.kinkyceleb.com/1261795520">http://www.kinkyceleb.com/1261795520</a><!-- m -->)
Thanx G>Apparently not. The HR is a block element, but it does not contain anything.Hi,
I don't know if this is of any use but you could give the <hr /> a background image:
hr {
background-image: url(filename.gif);
background-repeat: repeat;
height: 20px;
width: 100%;
}
PaulThanks, Paul. It's worth a shot. G >http://banners.dollarmachine.com/pic/2014000/hal001.gif (<!-- m --><a class="postlink" href="http://www.kinkyceleb.com/1261795520">http://www.kinkyceleb.com/1261795520</a><!-- m -->)