Skip welcome & menu and move to editor
Welcome to JS Bin
Load cached copy from
 
<!DOCTYPE html>
<html>
<head>
  <meta charset="utf-8">
  <title>Form exaple</title>
</head>
<body>
  <table class="t1">
    <tbody>
      <tr>
        <th>first Name</th>
        <th>last Name</th>
        <th>points</th>
      </tr>
      <tr>
        <td>jill</td>
        <td>smith</td>
        <td>50</td>
      </tr>
      <tr>
        <td>eve</td>
        <td>johnson</td>
        <td>67</td>
      </tr>
      <tr>
        <td>adam</td>
        <td>johnson</td>
        <td>67</td>
      </tr>
      <tr>
        <td>bo</td>
        <td>nilsson</td>
        <td>50</td>
      </tr>
      <tr>
        <td>mike</td>
        <td>ross</td>
        <td>35</td>
      </tr>
    </tbody>
  </table>
  <table class="t2">
  <tbody>
    <tr>
      <th>first Name</th>
      <th>last Name</th>
      <th>points</th>
    </tr>
    <tr>
      <td>jill</td>
      <td>smith</td>
      <td>50</td>
    </tr>
    <tr>
      <td>eve</td>
      <td>johnson</td>
      <td>67</td>
    </tr>
    <tr>
      <td>adam</td>
      <td>johnson</td>
      <td>67</td>
    </tr>
    <tr>
      <td>bo</td>
      <td>nilsson</td>
      <td>50</td>
    </tr>
    <tr>
      <td>mike</td>
      <td>ross</td>
      <td>35</td>
    </tr>
  </tbody>
</table>
</body>
</html>
 
/*table 1*/
table{
  border-collapse: collapse ;
  width: 600px;
  margin-bottom: 50px;
}
table th, table td{
  text-transform: capitalize;
  border: 1px solid #ccc;
  padding: 8px 8px;
  font-family: arial;
}
table th{
  color: white;
  background: #4CAF50;
  font-weight: bold;
  text-align: left;
  border-left: none;
  border-right: none;
}
table tr:nth-child(even){
  background: #f1f1f1;
}
table tr:nth-child(odd){
  background: white;
}
/*table 2*/
.t2 th, table td{
  border: none;
  border-bottom: 1px solid #ccc;
}
.t2 th{
  background: white;
  color: black;
  font-weight: bold;
  text-align: left;
}
Output 300px

You can jump to the latest bin by adding /latest to your URL

Dismiss x
public
Bin info
kylewhpro
0viewers