I need to put 5 images in a row, can some give me an example or a generator site that will create the css code.
thanks
I need to put 5 images in a row, can some give me an example or a generator site that will create the css code.
thanks
Images are inline elements so they will align in a row by default. If I didn't understand your request, please try to be more clear about it.
Snookerman's plan would work, or use this more complicated way:
CSS:
HTML:Code:.floating-img { float:left; } .clear-left { clear:left; }
The "clear-left" is to stop other items from wrapping around it (if you didn't already know).Code:<img src="some-img.jpg" alt="" class="floating-img" /> <img src="some-img.jpg" alt="" class="floating-img" /> <img src="some-img.jpg" alt="" class="floating-img" /> <img src="some-img.jpg" alt="" class="floating-img" /> <img src="some-img.jpg" alt="" class="floating-img" /> <div class="clear-left"> </div>
Hope that helps!
Alex Blackie, X96 Design
My Website
I specialize in: HTML5, CSS3, PHP, Ruby on Rails, MySQL, MongoDB, Linux Server Administration
Bookmarks