Tabel css Html
Kodingan Tabel CSS
<html>
<head>
<style type="text/css">
table{margin:10 auto;width:50%;border-collapse:collapse;
background:#ecf3eb;}
caption h3{}
th,td{border:5px solid #999;}
th{padding:8px 0;background:#0cf;}
td{padding:4px 8px;}
</style>
</head>
<body>
<table>
<caption><h3>contoh tabel dengan css
</h3></caption>
<tr>
<th>header kolom 1</th>
<th>header kolom 2</th>
<th>header kolom 3</th>
</tr>
<tr>
<td>data cell</td>
<td>data cell</td>
<td>data cell</td>
</tr>
<tr>
<td>data cell</td>
<td>data cell</td>
<td>data cell</td>
</tr>
</table>
</body>
</html>
Komentar
Posting Komentar