Forum Moderators: not2easy
table.new td { border: 1px solid #336633 }
table is 2 rows & 1 column - need a 1px border around the table & cell; but now get 2px between the 1st & 2nd row - do i need 2 styles with different widths for the four borders? Or is there a simpler way?
TIA
table.new { border-style: solid; border-width: 0px 1px 1px 1px; border-color: #336633; }
table.new td { border-style: solid; border-width: 1px 0px 0px 0px; border-color: #336633; }