Bootstrap Tutorial - Create Tables with Alternate Background








The following code shows how to create Tables with Alternate Background.

Example

<!DOCTYPE html>
<html lang="en">
<head>
<link rel="stylesheet"
  href="http://netdna.bootstrapcdn.com/bootstrap/3.0.3/css/bootstrap.min.css">
<link rel="stylesheet"
  href="http://netdna.bootstrapcdn.com/bootstrap/3.0.3/css/bootstrap-theme.min.css">
<script type="text/javascript"
  src="http://code.jquery.com/jquery.min.js"></script>
<script
  src="http://netdna.bootstrapcdn.com/bootstrap/3.0.3/js/bootstrap.min.js"></script>
<style type="text/css">
.bs-example {<!--   w  ww .  j ava 2  s  .c  om-->
  margin: 20px;
}
</style>
</head>
<body>
  <div class="bs-example">
    <table class="table table-striped">
      <thead>
        <tr>
          <th>Row</th>
          <th>First Name</th>
          <th>Last Name</th>
          <th>Email</th>
        </tr>
      </thead>
      <tbody>
        <tr>
          <td>1</td>
          <td>John</td>
          <td>Carter</td>
          <td>asdf@mail.com</td>
        </tr>
        <tr>
          <td>2</td>
          <td>Peter</td>
          <td>Parker</td>
          <td>asdf@mail.com</td>
        </tr>
        <tr>
          <td>3</td>
          <td>John</td>
          <td>Rambo</td>
          <td>asdf@mail.com</td>
        </tr>
      </tbody>
    </table>
  </div>
</body>
</html>

Click to view the demo