css:
.check-box {
margin: 0 10px;
cursor: pointer;
}
.check-box:before {
content: '';
background: #ffffff;
display: inline-block;
width: 8px;
height: 8px;
border: 2px solid #fff;
border-radius: 100%;
cursor: pointer;
vertical-align: bottom;
}
.check-box.checked:before {
background: #9ec707;
}
html:
<div style="background: #000; color: #fff; padding: 10px;">
选择操作系统:
<span class="check-box ">
CentOS
</span>
<span class="check-box checked">
Ubuntu / Debian
</span>
</div>
**粗体** _斜体_ [链接](http://example.com) `代码` - 列表 > 引用
。你还可以使用@
来通知其他用户。