核心提示:css简洁又好看的表格样式感觉这个css写的很好,简洁又好看!styletable, th , td{border: 1px solid grey;border-collapse: collapse;...
css简洁又好看的表格样式
感觉这个css写的很好,简洁又好看!
<style>
table, th , td {
border: 1px solid grey;
border-collapse: collapse;
padding: 5px;
}
table tr:nth-child(odd) {
background-color: #f1f1f1;
}
table tr:nth-child(even) {
background-color: #ffffff;
}
</style>
<p ng-app="myApp" ng-controller="customersCtrl">
<table>
<tr ng-repeat="x in names">
<td>{{ x.Name }}</td>
<td>{{ x.Country }}</td>
</tr>
</table>
</p>



