Toggle navigation
☰
Home
HTML
CSS
Scripting
Database
<!DOCTYPE html> <html> <head> <title>Example</title> <!-- CSS --> <style type="text/css"> table.curvedEdges { border: 10px solid RoyalBlue; border-radius: 13px; } table.curvedEdges td, table.curvedEdges th { border-bottom: 1px dotted black; padding: 5px; } </style> </head> <body> <!-- HTML --> <table class="curvedEdges"> <tr> <th>Table header</th><th>Table header</th> </tr> <tr> <td>Table cell 1</td><td>Table cell 2</td> </tr> </table> </body> </html>