Posts: 253
Location: Auckland, New Zealand
|
Why the extra cells, is that just used for spacers? If you wanted it to be clean then this would have to go.
Easiest way would be using cellspacing attribute in the table properties, this was not dropped in XHTML nor was there a replacement for it in CSS yet.
Here's what I suggest, as close to every pixel in your picture you supplied:
HTML Code:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN"
"http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en">
<head>
<meta http-equiv="Content-Type" content="application/xhtml+xml; charset=UTF-8" />
<title>Untitled</title>
<style type="text/css">
body
{
margin-top: 16px;
font-size: smaller;
}
table
{
width: 557px;
}
td
{
width: 135px;
height: 22px;
border: thin solid #fcb64c;
background-color: #ffecce;
color: black;
}
</style>
</head>
<body>
<table cellspacing="3" cellpadding="0">
<tr>
<td></td>
<td></td>
<td></td>
<td></td>
</tr>
</table>
</body>
</html>
Hope that helps. Also to note, I changed the body margins, just so your image lines up when I do a quick switch (similar to what animators would do for drawings (on paper), helps see if everything is lining up correctly).
Cheers,
MC.
__________________
#------------------------------ signature---------------------------------------------------------------------------------#
Quote:
|
I am well recognised for what I don't do than what I do. Chores are just one of those things.
|
Last edited by mastercomputers : 05-26-2006 at 07:24 AM.
|