<table class="table">
<th>ID</th>
<th>Adı</th>
<th>Soyadı</th>
<tbody>
<tr>
<td>1</td>
<td>Ali</td>
<td>Rodoplu</td>
</tr>
<tr>
<td>2</td>
<td>Kerem</td>
<td>Özer</td>
</tr>
<tr>
<td>3</td>
<td>Okan</td>
<td>Bilir</td>
</tr>
</tbody>
</table>
@import url(https://fonts.googleapis.com/css?family=Open+Sans:300);
body{font-family: 'Open Sans', sans-serif;}
table,tr,th,td{border:none}
.table{ width: 100%; display: table;}
.table tbody>tr:nth-child(odd)>th,
.table > tbody > tr:nth-child(odd) > td{background: #f9f9f9}
.table tbody > tr > td,
.table tbody > tr > th{padding: 10px 10px 10px 20px;}
.table tbody > tr > td{border-top:1px solid #ddd;}
th{text-align:left; color: #688a7e; font-weight: bold;}
.table > tbody > tr:hover > td, .table > tbody > tr:hover > th{background: #f5f5f5}
This Pen doesn't use any external CSS resources.
This Pen doesn't use any external JavaScript resources.