How to auto-align and distribute many small images? [solved]
How to auto-align and distribute many small images inside a div ?
I want something like that :
<div class="ContainerThatAlignMyIcons">
<img src="img1.jpg" width="10" height="10" alt="img1" />
<img src="img2.jpg" width="10" height="10" alt="img2" />
<img src="img3.jpg" width="10" height="10" alt="img3" />
<img src="img4.jpg" width="10" height="10" alt="img4" />
<img src="img5.jpg" width="10" height="10" alt="img5" />
</div>
I want that jQuery distribute all this item for the left border to the right border of the div.
I wonder if any plugins is doing this ? I did a search in Google and I do not find something near the result that I want.
Thank you!
Geemeetheway