CSS list-style-type 属性
## 实例
设置一些不同的列表样式:
### 无序列表实例
```scss
ul.circle {list-style-type: circle}
ul.square {list-style-type: square}
```
### 有序列表实例
```scss
ol.upper-roman {list-style-type: upper-roman}
ol.lower-alpha {list-style-type: lower-alpha}
```



