Images next to links with CSS, how to?
Apfhex (325 points) | Tue, 2006-06-06 00:33A lot of sites use CSS to put little images next to links automatically. How do I do this?
Commenting on this Forum topic is closed.
A lot of sites use CSS to put little images next to links automatically. How do I do this?
Commenting on this Forum topic is closed.
Maybe something like this:
a {
display:block;
background-image: url('dir/dir/image_name.gif');
background-repeat: no-repeat;
text-indent: 15px;
height: 15px;
}
----------------------
http://mijlee.com
----------------------