You could do table parameters in CSS, right?
I'm no expert, but I reverse-engineer everything. I would say if you know a site that has an example, use the web developer extension in FF and get any info you like on the formating, CSS etc.
For instance, on my site:
Code:
/* table inside the the td that holds the block title */
.blockhead {
color: #FFF;
font-size: 10px;
font-weight: bold;
text-align: left;
height: 25px;
width: 162px;
}
.blockheadbg {
width: 162px;
background: #242424 url(../images/BlockHeadBG.jpg);
}
/* table that holds the content in blocks */
.blockcontent {
width: 152px;
border: 1px solid #000;
padding: 4px;
background: #2C2C2C;
}
The way I see it, use both