Bonsoir tout le monde,
je veux faire un histogramme circulaire avec css avec les proportions 60% , 40%
j'ai essayé de façon suivante: css
et le html
Code : Sélectionner tout - Visualiser dans une fenêtre à part
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16 #apDiv1 { position: absolute; width: 200px; height: 115px; z-index: 1; left: 159px; top: 113px; } #apDiv2 { position: absolute; width: 200px; height: 115px; z-index: 2; left: 155px; top: 110px; }
merci pour votre aide
Code html : Sélectionner tout - Visualiser dans une fenêtre à part
1
2
3
4
5
6
7
8
9
10
11
12 <div id="apDiv1" style="width: 112px; height: 117px; background: #9C3; -moz-border-radius: 50px; -webkit-border-radius: 50px; border-radius: 50px;" ></div> <div id="apDiv2" style=" width: 0px; height: 0px; border-right: 60px solid transparent; border-top: 60px solid red; border-left: 60px solid red; border-bottom: 60px solid red; border-top-left-radius: 60px; border-top-right-radius: 60px; border-bottom-left-radius: 60px; border-bottom-right-radius: 60px; "></div>
Partager