lining up 2 columns

windows

Guest
Hi,<br />
<br />
I have a photo with some text in one column. I want to line up a table in the second column next to it. <br />
<br />
How do I get the table in the second column to do that? Right now the table is way above in the second column.<br />
<br />
Thanks in advance for any help!<!--content-->Use CSS to lay it out, something like this:<br />
<br />
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN"<br />
"http://www.w3.org/TR/html4/strict.dtd"><br />
<html><br />
<head><br />
<title>CSS Layout</title><br />
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1"><br />
<style type="text/css"><br />
.images {<br />
position: absolute;<br />
top: 50px; <br />
left: 10px;<br />
width: 200px; /*Set the width*/<br />
}<br />
.descriptions {<br />
margin-left: 210px; /*Should be a bit greater than the width above*/<br />
margin-top: 50px;<br />
}<br />
</style><br />
</head><br />
<body><br />
<div class="descriptions"><br />
Text description here...<br />
</div><br />
<div class="images"><br />
<img src=http://www.webdeveloper.com/forum/archive/index.php/"yourimg.gif" alt="Your description"><br />
</div><br />
</body><br />
</html><!--content-->Thank you VERY much, pyro!<!--content-->You're welcome... :)<!--content-->
 
Back
Top