so I've created a table with table classes and I want the table to have rounded edge, but this code gives me all Cells Rounded. How to have only the table rounded ? thank you
<!DOCTYPE html>
<html>
<head>
<style type="text/css">
table
{
border-collapse:collapse;
}
table, td, th
{
/* This is to have rounded corners */
border:1px solid black;
/* change to 1 if border needed */
}
table.margin
{
margin-top:25px;
}
table.margin2
{
margin-top:15px;
border-radius:5px;
-moz-border-radius:5px;
}