Sorry for basic question. I have the following layout:
#existing-files .image-row{
width: 700px;
border: 1px solid orange;
padding-left: 10px;
}
.img-row-description{
border: 1px solid black;
display: inline;
width: 400px;
}
And it looks like this:

I’d like for the .img-row-description to be aligned to the top of the containing image-row. How would I do that?
I don’t know what timpone’s markup looks like, but I provided a couple jsFiddles for anyone who would like to explore how to do this.
As long as the structure in the markup is simple and valid, this effect can be accomplished by floating the img left rather than using
vertical-align: topDepending upon what you want to do:
Text wrapping around the image
No text wrapping around the image