I have a simple structure that looks like this:
<div class="inline">
<div class="photo-group thumb_wrapper">
<img src="https://encrypted-tbn3.gstatic.com/images?q=tbn:ANd9GcQYZ35nsT0CRTlGBtNmPHikH74wXBldsPe8LQYfhXnzADYo-xSU"
/>
<div class="thumb_icon label-inverse">
<p class="thumb_icon_content">
243 x 324
</p>
</div>
<div class="thumb_time label-inverse" ><p class="thumb_time_content">11.41 Kb</p></div>
http://jsbin.com/nomekagojo/3/edit?html,css,output
I am looking to left align the .thumb_icon_content
on the image and right align the .thumb_time_content
. The challenge is that the image does not always take up 100% of the .photo-group
div.
If I set width:100% on the image, it will be fine, but I want to display the image without changing its resolution.
How can this be achieved?
Any assistance would be greatly appreciated!
Thank you, Alon