Topic: Need help with resizing table DIVs (Page 1 of 1) |
|
|---|---|
|
Neurotic (0) Inmate Newly admitted From: |
posted 06-14-2006 22:36
* Post Incomplete * code: <table border="0" cellspacing="0" cellpadding="0" id="mainTable">
<thead>
<tr>
<th id="{id}"><tiles:getAsString name="{name}" ignore="true"/></th>
<th id="{id}"><tiles:getAsString name="{name}" ignore="true"/></th>
</tr>
</thead>
<tbody>
<tr>
<td id="{id}" style="width: 200px; height: 450px; background-color: #4F5A8D; overflow: hidden;">
<!-- *****change this width back to 200px ******* -->
<div id='{id}' style="height: 450px; background-color: #4F5A8D; overflow: auto;">
<div id="<tiles:getAsString name='{name}' />" class="{class}"></div>
</div>
</td>
<td id="{id}">
<div style="width: 100%; height: 450px; overflow: auto; background-color: white">
<div id="<tiles:getAsString name='{name}' />" class="{class}t">
<tiles:get name="{name}" ignore="true" />
</div>
</div>
</td>
</tr>
</tbody>
</table>
|