HTML CSS examples for CSS Widget:Table Border
Create round table with Border-radius
<html> <head> <meta name="viewport" content="width=device-width, initial-scale=1"> <style id="compiled-css" type="text/css"> table<!--from w w w .j a va2 s . c o m--> { border: 1px dotted black; border-radius: 25px; border-collapse:separate; } table td { padding: 15px; } </style> </head> <body> <table> <tbody> <tr> <td>Smth:</td> <td>Lalala</td> </tr> </tbody> </table> </body> </html>