bug1375518-3.html 346 B

12345678910111213141516171819202122
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <title>Separated border model table</title>
  5. <style>
  6. div > span {
  7. display: table-cell;
  8. background-color: black;
  9. height: 100px;
  10. width: 100px;
  11. border-radius: 50px;
  12. }
  13. div {
  14. display: table;
  15. border-collapse: separate;
  16. }
  17. </style>
  18. </head>
  19. <body>
  20. <div><span></span></div>
  21. </body>
  22. </html>