border-collapse: collapse;
table tr:nth-child(odd) {
background-color: #f1f1f1;
table tr:nth-child(even) {
background-color: #ffffff;
<script src="https://apps.bdimg.com/libs/angular.js/1.3.9/angular.min.js"></script>
<div ng-app="myApp" ng-controller="customersCtrl">
<tr ng-repeat="x in names | orderBy : 'Country'">
var app = angular.module('myApp', []);
app.controller('customersCtrl', function($scope, $http) {
$http.get("/static/example/Customers_JSON.php")
.success(function (response) {$scope.names = response.records;});