0
我正在建立一個網站,我的民意調查結果有些麻煩。我在谷歌搜索,我還沒有找到任何幫助我。我試過一個CSS,但它完全無法工作。我只是得到一個白色的塊。我試圖使投票結果是這樣的:Css民意測驗結果舍入
,但我不能。我將如何做到這一點。
這裏是我當前的代碼:
.Yellow {
background-color: rgb(255, 255, 255);
position: absolute;
left: 132px;
top: 836px;
width: 164px;
height: 165px;
z-index: 260;
}
.Green {
background-color: rgb(182, 183, 182);
position: absolute;
left: 132px;
top: 836px;
width: 164px;
height: 165px;
z-index: 259;
}
.Red {
background-color: rgb(81, 108, 120);
position: absolute;
left: 132px;
top: 836px;
width: 164px;
height: 165px;
z-index: 258;
}
.Cyan {
background-color: rgb(220, 177, 61);
position: absolute;
left: 132px;
top: 836px;
width: 164px;
height: 165px;
z-index: 257;
}
HTML:
<div class="Yellow"></div>
<div class="Green"></div>
<div class="Cyan"></div>
<div class="Red"></div>`
爲什麼不使用像http://www.highcharts.com/demo/pie-donut這樣的圖表? – Exlord
我想你需要html5來製作一個這樣的形狀 – Exlord