Hello, I am working on a project to create an image gallery. The gallery will look almost exactly like
this and
this, though I am currently at a roadblock. I am at a loss for how I would go about doing this. The images would also be user submitted and hyperlinked. Here is an example of what I have so far, but it still doesn't look right to me.
I know this is easier than I am making it.
Code:
HTML:
<div class='col'>
<img />
<img />
<img />
</div>
<div class='col'>
<img />
<img />
<img />
</div>
Code:
CSS:
.col{
width:50%;
float:left;
}
img{
width:100%;
}
If anyone has any suggestions they would be greatly appreciated.