php에서 css이용하여 col별 비율 그래프 만들기
2022. 7. 22. 16:07ㆍDev
반응형
<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>
반응형
'Dev' 카테고리의 다른 글
javascript 문자열에서 백틱(backtic) 제거하는 정규식 (2) | 2022.12.15 |
---|---|
MySQL 마지막 등록된 ID값 구하기 (Last_Insert_ID) (0) | 2022.07.22 |
JS 정규식으로 원하는 태그 제거하기 ( 테이블표 엑셀출력 과정 JS EXCEL DOWN ) (0) | 2022.05.20 |
php 문자열 한글여부 확인 (0) | 2022.04.22 |
phpexcel 서식 (날짜, 시간, 백분율) (0) | 2022.04.11 |