Web Design & Development
table, th, td {border: 1px solid blue;}
table {border-collapse: collapse;}
This will collapse the table's border onto the th and td. Why not vice versa? i.e. Collapse th and td's border into table's? I tried table, th, td {border: 1px solid blue;}
th, td {border-collapse: collapse;} but doesn't...