1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22
<!DOCTYPE html> <style> table { border: 5px solid green; border-collapse: collapse; } td { width: 50px; height: 50px; border: 1px solid red; } </style> <p>There should be a square with a green border, not a red border. </p> <table> <tr> <td></td> </tr> </table>