View Single Post
Old 08-20-2005, 07:25 PM   #2 (permalink)
goldfish
Junior Member
 
Join Date: Jul 2005
Posts: 27
Default

This may help you using css:
PHP Code:
<html>
<
head>
    <
style type="text/css">
        
table.thinBorder {
            
border-collapsecollapse;
        }

        
table.thinBordertable.thinBorder tr td {
            
border1px solid #000000;
        
}
    </
style>
</
head>

<
body>
    <
table class="thinBorder" border="0">
        <
tr>
            <
td>1</td>
            <
td>2</td>
            <
td>3</td>
        </
tr>
        <
tr>
            <
td>4</td>
            <
td>5</td>
            <
td>6</td>
        </
tr>
            </
table>
</
body>
</
html
hope this helps
goldfish is offline   Reply With Quote
Sponsored Links