您现在的位置:首页 >> 前端 >> 内容

css简洁又好看的表格样式

时间:2017/12/21 10:45:12 点击:

  核心提示: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>

css简洁又好看的表格样式

Tags:CS SS S简 简洁 
作者:网络 来源:だれ