The inner border width StyleVar is used as the value for the 'cellspacing' attribute of all tables in vBulletin. It controls the width of the border apparent between table cells.
By setting a value of 1 or greater, a margin will appear between table cells, showing the background color of the underlying table as defined in the .tborder CSS class.
At the default value of 1, a thin, one pixel border is seen between table cells:



<table class="tborder" cellspacing="$stylevar[cellspacing]" cellpadding="5">
<tr>
<td class="alt1">First Cell</td>
<td class="alt2">Second Cell</td>
</tr>
</table>Note:
Do not add 'px' to the value of this StyleVar.
