I want to make in HTML some statistic bar charts, to represent in the same bar two different values using two different colours, for example: from an exam of 10 questions, 6 question were correctly answered and 4 wrong. In the bar should appear the 60% green and the other 40% red.
I have been thinking in display the red one first, and the green one over it, so it covers the the lower part, something like this:
Style
.bar1{
width:40px;
background-color:#A55541;
position:left;
}
.bar2{
width:40px;
background-color:#CA804F;
position:left;
}
HTML
<div style="height:<?=$max ?>px; margin-top:10px;" class="bar1"</div>
<div style="height:<?=$max-($mistakes*$scale) ?>px; margin-top:10px;" class="bar2"</div>
But it doesn't work. Does anyone know how to solve it?? I have been looking for a similar question on here but I couldn't find it.
See Question&Answers more detail:
os 与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…