php에서 css이용하여 col별 비율 그래프 만들기

2022. 7. 22. 16:07Dev

반응형
<td class="total" style="background-color: white;">
 	<? $percent = round($전체 개수/비교 대상의 개수*100,1);?>
    <div class="progress-bar" style="float:left; width: 65%; height: 15px; background-color: #E9E9E9; font-weight: 600; font-size: .8rem;">
        <div class="progress" style="width: <?=$percent?>%; height: 15px; padding: 0; text-align: center;  background-color: #4F98FF; color: #111;">
        </div>        
    </div>
    <div class="progress-bar" style="float:right; width: 35%; font-weight: 600; font-size: .8rem;">
        <?=$percent.'%'?> 
    </div>
</td>

 

 

반응형