Border Radius Table Row Code Example
Example: border radius in table
table {     border-collapse: collapse;     border-radius: 30px;     border-style: hidden; /* hide standard table (collapsed) border */     box-shadow: 0 0 0 1px #666; /* this draws the table border  */  }  td {     border: 1px solid #ccc; }
Comments
Post a Comment