站内搜索:
首页 >> 前端 >> 内容
css简洁又好看的表格样式

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

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简洁又好看的表格样式

  • 上一篇:spring框架快速入门
  • 下一篇:bootstraptable数据行合并讲解
  • 返回顶部