Hi,
This is the layout I'm interested in for css instead
I'd do it something very roughly like this.
Code:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
<title>Untitled Document</title>
<style type="text/css">
*{margin:0;padding:0}
dl{
width:640px;
margin:auto;
border-bottom:1px dashed #ccc;
padding:10px;
overflow:hidden;
background:#f2f2f2;
}
dt{text-align:right}
dd{overflow:auto}
dt,dd{margin:0}
dt a{float:left;text-align:left;}
dt img,.image{
float:left;
margin:0 10px 0 0;
width:93px;
height:62px;
background:red;
border:1px solid #000;
text-align:left
}
* html dd{height:1%}/* 3px jog*/
</style>
</head>
<body>
<dl>
<dt><span class="image">Image</span><a href="#">The Name of Something</a><strong>Some text here</strong></dt>
<dd>
<p>The description of whatever the heading is about goes here. The description of whatever the heading is about goes here.The description of whatever the heading is about goes here.</p>
</dd>
</dl>
<dl>
<dt><span class="image">Image</span><a href="#">The Name of Something</a><strong>Some text here</strong></dt>
<dd>
<p>The description of whatever the heading is about goes here. The description of whatever the heading is about goes here.The description of whatever the heading is about goes here.</p>
</dd>
</dl>
<dl>
<dt><span class="image">Image</span><a href="#">The Name of Something</a><strong>Some text here</strong></dt>
<dd>
<p>The description of whatever the heading is about goes here. The description of whatever the heading is about goes here.The description of whatever the heading is about goes here.</p>
</dd>
</dl>
<dl>
<dt><span class="image">Image</span><a href="#">The Name of Something</a><strong>Some text here</strong></dt>
<dd>
<p>The description of whatever the heading is about goes here. The description of whatever the heading is about goes here.The description of whatever the heading is about goes here.</p>
</dd>
</dl>
<dl>
<dt><span class="image">Image</span><a href="#">The Name of Something</a><strong>Some text here</strong></dt>
<dd>
<p>The description of whatever the heading is about goes here. The description of whatever the heading is about goes here.The description of whatever the heading is about goes here.</p>
</dd>
</dl>
</body>
</html>
I don't see the above as tabular data as its not the sort of data you would really have in a spreadsheet. There isn't a specific relationship between column and rows so I would use a list or a definition list as in my example above.
Bookmarks