Just starting out with CSS design and looking to create a page similar to the example below.
I've managed to separate the images using a span attribute, but I'm struggling with aligning the text and button in a single row.
This is what I have so far:
<div align="center">
<span style="border:1px solid #ECECEC;margin: 10px">
<img src="http://t2.gstatic.com/images?q=tbn:qaieI53CLSGGaM:http://img.directindustry.com/images_di/photo-pp/rf-anechoic-test-chamber-206872.gif"/>
</span>
<span style="border:1px solid #ECECEC;margin: 10px">
<img alt="" src="http://t2.gstatic.com/images?q=tbn:qaieI53CLSGGaM:http://img.directindustry.com/images_di/photo-pp/rf-anechoic-test-chamber-206872.gif"/>
</span>
<span style="border:1px solid #ECECEC;margin: 10px">
<img alt="" src="http://t2.gstatic.com/images?q=tbn:qaieI53CLSGGaM:http://img.directindustry.com/images_di/photo-pp/rf-anechoic-test-chamber-206872.gif"/>
</span>
<span style="border:1px solid #ECECEC;margin: 10px">
<img alt="" src="http://t2.gstatic.com/images?q=tbn:qaieI53CLSGGaM:http://img.directindustry.com/images_di/photo-pp/rf-anechoic-test-chamber-206872.gif"/>
</span>
<span style="border:1px solid #ECECEC;margin: 10px">
<img alt="" src="http://t2.gstatic.com/images?q=tbn:qaieI53CLSGGaM:http://img.directindustry.com/images_di/photo-pp/rf-anechoic-test-chamber-206872.gif"/>
</span>
<span style="border:1px solid #ECECEC;margin: 10px">
<span>some text here</span>
<button>XYZ</button>
</span>
</div>
However, my last div containing "some text here" and buttons is appearing at the bottom. I understand that I can achieve this layout using tables, but I'm hesitant to use a div tag inside a span tag.
Any tips or suggestions would be greatly appreciated.