bug1375518.html 317 B

123456789101112131415161718192021222324
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <title>Table border collapse</title>
  5. <style>
  6. table {
  7. border-collapse: collapse;
  8. height: 100px;
  9. width: 100px;
  10. }
  11. td {
  12. background-color: black;
  13. border-radius: 50px;
  14. }
  15. </style>
  16. </head>
  17. <body>
  18. <table>
  19. <tr>
  20. <td></td>
  21. </tr>
  22. </table>
  23. </body>
  24. </html>