|
|
|
|
|
by kerryfalk
5527 days ago
|
|
Or, to make it _really_ simple: <div class="column">1</div>
<div class="column">2</div>
<div class="column">3</div>
div.column {
margin: 10px;
width: 200px;
float: left;
}
EDIT: Missed the key constraint, resizable center column. What I have above won't work for that, but shows that replacing tables isn't very difficult. |
|