Create round table with Border-radius - HTML CSS CSS Widget

HTML CSS examples for CSS Widget:Table Border

Description

Create round table with Border-radius

Demo Code

ResultView the demo in separate window

<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>

Related Tutorials