そのため、テーブルクラスを使用してテーブルを作成し、テーブルのエッジを丸めたいのですが、このコードを使用すると、すべてのセルが丸められます。テーブルだけを丸めるにはどうすればよいですか?ありがとうございました
<!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;
}