Hi,
I am fresh to CSS design and I want to design a page similar to the following.
I am able to separate the images with a span attribute, but I am not able to place the text and button as a single row.
http://4.bp.blogspot.com/_cPEUCNW5H44/S4ZCS-H07sI/AAAAAAAAPPk/dNsF1CMIm4s/s1600-h/UI.PNG
This is what I have done 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">
<div>some text here
</div>
<button>XYZ</button>
</span>
</div>
But my last div having "some text here" and buttons are getting displayed in the bottom. I know I can design this using tables. But I feel I should not be using a div tag inside a span tag.
Any tips/suggestions are welcome.