|
Posted by jacob.miles on 01/10/06 09:38
Hello. I'm writing a web application that needs to display image
thumbnails on a page in order from left to right, wrapping around when
it reaches the end of the row. If it were just the images, there'd be
no problem, but I need to display text beneath each one. When I try to
do this, they display one underneath the other, not left to right.
What am I doing wrong?
The html snippet looks roughly like this:
<div class="image">
<img src=..../>
<div class="image-name">...</div>
</div>
the CSS:
..image {
display: inline;
}
They display one underneath the next instead of left to right. What am
I doing wrong?
- Jake
Navigation:
[Reply to this message]
|