Make a CSS bar graph

%

Output:
How much I love cats
91%

The HTML

<div class="bar-graph">
<span class="bar-name">How much I love cats</span>
<div style="width:91%"></div>
<span class="bar-percent">91%</span>
</div>

The CSS


.bar-graph {
	border-radius:5px;
	-webkit-border-radius:5px;
	margin-bottom: 10px;
	padding:10px;
	position: relative;
	overflow: hidden;
	border:1px solid #ccc;
	z-index: 2;
}
.bar-percent{ 
	float: right; 
}
.bar-graph div {
	background:#ccffcc;
	position: absolute;
	display: block;
	height:60px;
	width:100%;
	top:0;
	left:0;
	z-index: -1;
}