Skip to content

Commit

Permalink
Update table.html
Browse files Browse the repository at this point in the history
  • Loading branch information
mconlon17 authored Feb 6, 2019
1 parent e71ab09 commit 1f0a8e5
Showing 1 changed file with 25 additions and 0 deletions.
25 changes: 25 additions & 0 deletions table.html
Original file line number Diff line number Diff line change
@@ -1,3 +1,26 @@
<!DOCTYPE html>
<html>
<head>
<meta name="viewport" content="width=device-width, initial-scale=1">
<style>
table {
border-collapse: collapse;
border-spacing: 0;
width: 100%;
border: 1px solid #ddd;
}

th, td {
text-align: left;
padding: 16px;
}

tr:nth-child(even) {
background-color: #f2f2f2
}
</style>
</head>
<body>
<table class="table table-striped table-bordered">
<thead>
<tr>
Expand Down Expand Up @@ -4359,3 +4382,5 @@
</tr>
</tbody>
</table>
</body>
</html>

0 comments on commit 1f0a8e5

Please sign in to comment.