css中怎么能在文字前的中间加个点号

html-css015

css中怎么能在文字前的中间加个点号,第1张

方法有:

1、用图片

2、用中文标点符号(•)

3、用<li>标签(推荐!)

4、给其他标签增加下述css属性,也可实现类似li标签的功能:

<div style="display:list-itemlist-style-type:discmargin-left:2em">文字文字文字</div>

<style>

.redcircle { position: relativemargin: auto  width: 8pxheight: 8pxbackground: #FF0000border-radius: 50%border: 1px solid #FF6347}

</style>

<table>

<tr><th>服务器</th><th>状态</th><th>CPU</th><th>MEM</th></tr>

<tr><td>game1</td><td><div class="redcircle"></div></td> <td>10</td><td>22</td></tr>

</table>