12345678910111213141516171819202122 |
- <!DOCTYPE html>
- <html>
- <head>
- <title>Table border collapse</title>
- <style>
- div > span {
- display: table-cell;
- background-color: black;
- height: 100px;
- width: 100px;
- border-radius: 50px;
- }
- div {
- display: table;
- border-collapse: collapse;
- }
- </style>
- </head>
- <body>
- <div><span></span></div>
- </body>
- </html>
|