"로 div를 생성합니다. 2. CSS 속성을 ".status-point { display : inline-block;width: 6px;height: 6px;border-radius: 50%;}" 도트 효과를 얻으려면"/> "로 div를 생성합니다. 2. CSS 속성을 ".status-point { display : inline-block;width: 6px;height: 6px;border-radius: 50%;}" 도트 효과를 얻으려면">
css3에서 점을 구현하는 방법: 1. "
"로 div를 만듭니다. 2. CSS 속성을 ". status -point {display: inline-block;width: 6px;height: 6px;border-radius: 50%;}" 도트 효과를 달성합니다.
이 튜토리얼의 운영 환경: Windows 10 시스템, HTML5 버전, DELL G3 컴퓨터
css3에서 도트를 구현하는 방법은 무엇입니까?
css로 작은 점을 구현하세요
필요한 효과:
<div v-if="scope.data.row.status === 1"> <div class="status-point" style=" background-color:#67C23A" /> 已通过 </div> <div v-else-if="scope.data.row.status === 0"> <div class="status-point" style=" background-color:#E6A23C" /> 未被审批</div> <div v-else-if="scope.data.row.status === 2"> <div class="status-point" style=" background-color:#00000040" /> 未通过</div>
<style scoped> .status-point { display: inline-block; width: 6px; height: 6px; border-radius: 50%; } </style>
나중에 생각해볼 테니 i 태그를 사용해도 됩니다.
추천 학습: "css3 비디오 튜토리얼"
위 내용은 CSS3에서 점을 구현하는 방법의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!