」;2、透過設定css屬性為「.status-point {display : inline-block;width: 6px;height: 6px;border-radius: 50%;}”即可實現圓點效果。"/> 」;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%;}」即可實現圓點效果。
本教學操作環境:Windows10系統、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中文網其他相關文章!