help with CSS styling borders
Posted: 14 June 2010 10:34 AM   [ Ignore ]
Newbie
Rank
Total Posts:  1
Joined  2010-06-14

hey guys first post here! basically i need the child table’s borders to zero out, so it looks like a single table. for some reason it’s not working via CSS :(

http://pastebin.org/329823

<html>
<
head>
<
style type="text/css">
table { border:1px solid black;border-collapse:collapse }
td
,tr { border:1px solid black;padding:1px }
th { border
:1px solid black;text-align:center;padding:1px }
table table { border
:0px;padding:1px }
table table td
:first-child { border-left:0 } 
table table td
:second-child { border-right:0 } 


</style>
</
head>
<
body>
    <
table>
        <
tr>
            <
th colspan=2>Work experience</th>
        </
tr>
        <
tr>
            <
td>Name of Employer</td>
            <
td>Employer Info</td>
        </
tr>
        <
tr>
            <
td>Trader Joes</td>
            <
td>
                <
table>
                    <
tr>
                        <
td>Supervisor NameRobert Kennedy</td>
                        <
td colspan=3>Address1820 South Grant StreetSan MateoCalifornia94402</td>
                    </
tr>
                    <
tr>
                        <
td rowspan=3>Position:Retail Clerk<br>
                              
DutiesCash RegisterStocking,<br>
                             
InventoryOrder WritingCleaning,<br>
                            
Customer Service</td
                        <
td>Phone: (650540-6140</td>
                        <
td>EmailN/A</td>
                        <
td>Business TypeGrocery Store</td>
                    </
tr>
                    <
tr>
                        <
td colspan=3>Length of EmploymentNovember 2006 to December 2009</td>
                    </
tr>
                    <
tr>
                        <
td colspan=3>Reason for Leaving:<br>Resigned to help father at his office</td>
                    </
tr>
                </
table>
            </
td>        
        </
tr>
    </
table>
    
</
body>
</
html
Profile