Skip to content

Instantly share code, notes, and snippets.

@whilp
Created June 13, 2011 17:18
Show Gist options
  • Save whilp/1023222 to your computer and use it in GitHub Desktop.
Save whilp/1023222 to your computer and use it in GitHub Desktop.
Percentage bars
<html>
<head>
<title>IP Tracker</title>
<style>
.bar {
border: 1px solid #ccc;
width: 600px;
background: white;
display: block;
}
.fill {
float: left;
}
</style>
</head>
<body>
<table>
<tr>
<td>column 1</td>
<td>column 2</td>
<td>
<span class="bar">
<span class="fill" style="width: 50%; background: #f00;">&nbsp;</span>
<span class="fill" style="width: 20%; background: #0f0;">&nbsp;</span>
<span class="fill" style="width: 30%; background: #00f;">&nbsp;</span>
</span>
</td>
</tr>
</table>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment