I've a inside container div. Now this gallery div (of set width = 800px) houses lots of thumbnails of sizes 100x100. The thumbnails are taken out from a database, and the number of thumbnails can vary based on the query used. Also, each of the thumbnails are set to "float:left" within the gallery div.

Now the question is, assuming 8 thumbnails get placed in each row, and assuming that 3 such rows got created by the query, can I give a border-bottom design to these rows?

Basically the question is, can i specify the border properties for the rows that are created by floating elements within a set width.

Thanks!

link|improve this question

72% accept rate
feedback

6 Answers

My contribution:

<ul>
    <li>
        <img src="" alt=""/>
    </li>
    <li>
        <img src="" alt=""/>
    </li>
    <li>
        <img src="" alt=""/>
    </li>
    <li>
        <img src="" alt=""/>
    </li>
    <li>
        <img src="" alt=""/>
    </li>
    <li>
        <img src="" alt=""/>
    </li>
    <li>
        <img src="" alt=""/>
    </li>
    <li>
        <img src="" alt=""/>
    </li>
    <li>
        <img src="" alt=""/>
    </li>
    <li>
        <img src="" alt=""/>
    </li>
    <li>
        <img src="" alt=""/>
    </li>
    <li>
        <img src="" alt=""/>
    </li>
    <li>
        <img src="" alt=""/>
    </li>
    <li>
        <img src="" alt=""/>
    </li>
    <li>
        <img src="" alt=""/>
    </li>
    <li>
        <img src="" alt=""/>
    </li>
</ul>
ul { width:500px; }
img {
    width:50px;
    height:50px;
}
li {
    float:left;
    border-bottom: 1px solid grey;
    padding: 5px 5px 0;
}

Live: http://jsfiddle.net/Bduxm/5/

link|improve this answer
feedback

As far as I read your question.. then no, it's not possible as it stands.. your pseudo three "rows" are not actually wrapped in individual containers so there is nothing to put a border on

the answers you have so far assume you count the min/max number of images selected and wrap up to 8 in a containing element.. this containing element could then be given the border.. however I read from your question the number may vary depending on a query, could you add something to the query to wrap up to eight elements in each row?


added: you could probably use a repeating background image on the container with horizontal lines about 100px apart, then margin the images to leave space to show the line/borders

link|improve this answer
My solution works without wrapping the rows in a row-container (though each img needs a wrapper), so that it doesn't matter how many images would fit into the width of the overall container -- try adjusting the container width in the jsfiddle I set up (the link is in my answer). It's a trick with absolute positioning. – Faust May 12 '11 at 20:36
yes, I saw that :) - but instead you're wrapping each image in a container and you can do that much easier without the fake span like @gutierrezalex's answer - your answer is also inaccurate, but I was in the middle of posting a couple suggestions which I've put in a comment to your answer.. good idea though :) – clairesuzy May 12 '11 at 21:04
feedback

Why not make the parent div's background the color of the border you want, then make the thumbnail's background white with no margin to the left/right, but a margin at the bottom/top. Make sure there is enough padding around each thumbnail so there is enough white. Then you get a nice grid with horizontally appearing rows.

link|improve this answer
nice, but then if you have a short row you get a dark (or border coloured) block at the end - jsfiddle.net/Bduxm/9 – clairesuzy May 12 '11 at 22:06
@clairesuzy that is true, but if you add a border-bottom via the individual thumbnails, your border will also fall short. It comes down to picking the lesser evil or pick a different style :) – NightHawk May 13 '11 at 16:04
feedback

You could fake it, though you'd need a little more markup. With this HTML:

<div id="container">
    <div class="imageWrapper">
                <span class="fakeRowBorder">clever, huh?   ;-)</span>
                <img src="somesrc" /> 
    </div>
    <div class="imageWrapper">
                <span class="fakeRowBorder">clever, huh?   ;-)</span>
                <img src="somesrc" /> 
    </div>

    ... [etc.]

</div>  

And this CSS:

#container{position:relative;width:400px;}
img{width:50px;height:50px;outline:1px dotted green}
.imageWrapper{float:left;position:static;margin-bottom:30px;}
.fakeRowBorder{position:absolute;left:40px;right:40px;margin-top:55px;border-bottom:1px solid blue;text-align:center;font-size:9px}

As long as the .imageWrappers are positioned static (default) then the absolutely positioned .fakeRowBorders will use #container as their reference grid for any positioning properties (top, right, bottom, or left). If you don't specify top or bottom on those fake borders, then they are calculated per how they would be were they positioned normally (rather than taking 0 as a default, as one might think) -- and that's the trick: specify "left" and "right" properties for each one, but leave "top" and "bottom" un-specified.

Adjust top and bottom padding or margin on the image and the fake borders to play with the spacing.

Check out how it works here: http://jsfiddle.net/5S6j9/3/

Revision

clairesuzy pointed out that the solution didn't work in IE, so I've revised it, including adding in display:block to the fake border, as she suggested.

Also, (partly just to show off) I added some text centered in the row border, and brought it in from the left and right edges of the #container to demostrate how it displays apparently independently of the individual images.

link|improve this answer
I think you mean position: relative; for the wrappers as that is how the span knows to position itself to the wrapper, and for IE you need bottom: 0; width: 100%;` not right: 0; for the fake row span, also display: block on the image would help if you don't want gaps : jsfiddle.net/Bduxm/6 – clairesuzy May 12 '11 at 21:01
No, you don't want position:relative on the wrappers. that would take away the ability to have the left and right properties be tied to the container and not the row. Notice how, in your solution, the last row doesn't span the whole width of the container, which is also the problem with gutierrezalex's solution. (Unless that's not a problem, of course! arun?) – Faust May 12 '11 at 21:11
I agree, it depends on OP requirement - but your solution doesn't work in IE (In IE7 border is in middle of image, though in IE8 it's OK if you also make the image display: block;) :( hence my thinking that it's better somehow to wrap the "row" by counting the elements selected with a script, if indeed the OP does require full width bottom border – clairesuzy May 12 '11 at 21:19
@clairesuzy: thanks for pointing out the IE issue. I've fixed it and noted that in my answer. – Faust May 13 '11 at 7:02
feedback

Use tables...

<table id="container" style="width:800px">
<tr style="border-bottom:1px solid black">
<td class="thumbnail">thumbnail</td>
...
</tr>
...
</table>

CSS:

.thumbnail { width: 100px; }
link|improve this answer
feedback

hmm.. i've been thinking about MY own question.. and here's my quick thought on it (i've not yet coded to confirm) -

i guess, if the container element is set with a background-image with say a height of 200px (depending on the thumbnail height calc, it could vary) and a thin 1px line at the bottom of this image (for faking the border), we could do a repeat in both x and y, so that this image will do the border (border for the bottom of each row) setting.

how's that?!

psuedo code for what i think might work -

#container
{
width:1000px; height:auto; margin:0; padding:0;
background-image:url('image-of-height-and-width-100px-each-and-a-thin-line-at-bottom.png');
repeat:x; repeat:y;
}

.thumbnails{
float:left; width:80px; height:80px;
}

how about that?! guys, seriously thanks for the suggestions.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.