Aligning text and images

liunx

Guest
I want to know how to align text with an image i have. I want the text to be centered, underneath the image I have.<br />
<br />
Thanks,<br />
Dave<!--content-->You could put the pair in a properly styled div. Just make the div about (=>) the width of the image.<br />
<br />
<style type="text/css"><br />
.foo {<br />
width:150px;<br />
text-align:center;<br />
}<br />
</style><br />
<br />
<br />
<body><br />
<div class="foo"><br />
<img src=http://www.webdeveloper.com/forum/archive/index.php/"someimage" width="149" height="100" /><br />
<p>Here's some text to be centered under the image.</p><br />
</div><br />
</body><!--content-->
 
Back
Top