ShawnMolloy
MIS
I'd like to create a CSS container to neatly display a photo, a caption, and some tool links for maintenace, like "Edit" end "Delete".
The purpose of this photo box is to place within a repeating control, so that I can have any given number of boxes and they will wrap and flow seamlessly.
I am light with CSS, but I have a feeling that the secrect lies in the display property? Something like this...
Shawn Molloy
Seattle, WA
The purpose of this photo box is to place within a repeating control, so that I can have any given number of boxes and they will wrap and flow seamlessly.
I am light with CSS, but I have a feeling that the secrect lies in the display property? Something like this...
Code:
<div> //images container
<!-- image block (many!) -->
<span>
My Image
</span>
<span>
<img src="someImg.jpg"
</span>
<span>
Edit | Delete
</span>
<!-- end image block -->
</div>
Thanks,
Shawn Molloy
Seattle, WA