I would like to use sprites to display my icons. I created image and CSS, now I need to add class to my html element. What is the best HTML element for that?
<div>
works fine, but of course it spans across entire space and wraps. works only if I put something in it. Here's my CSS
.sprite {
background:url('/i/sprites.png');
background-repeat:no-repeat
}
.ico2{
background-position:0 -104px;
width:16px;
height:16px
}