overflow-clip-rounded-table.html (598B)
1 <!DOCTYPE html> 2 <html><head><meta charset="utf-8"> 3 <title>Verifies overflow-clip on table with rounded border renders correctly</title> 4 <link rel="help" href="https://www.w3.org/TR/css-overflow-3/#valdef-overflow-clip"> 5 <link rel="match" href="overflow-clip-rounded-table-ref.html"> 6 <style> 7 table { 8 border-radius: 10px; 9 border-collapse: collapse; 10 overflow: clip; 11 } 12 thead { 13 background: green; 14 } 15 </style> 16 </head><body><p>You should see a green table with rounded corners</p> 17 <table> 18 <thead> 19 <tr> 20 <th>One</th> 21 <th>Two</th> 22 </tr> 23 </thead> 24 </table> 25 </body></html>