CSS中的list-style屬性用于設置列表項的符號樣式,常用于無序列表和有序列表中。
ul { list-style: disc; } ol { list-style: decimal; }
屬性值包括:
- none:不顯示符號。
- disc:實心圓點,默認值。
- circle:空心圓點。
- square:實心正方形。
- decimal:數字。
- lower-roman:小寫羅馬數字。
- upper-roman:大寫羅馬數字。
list-style還支持簡寫,順序為list-style-type、list-style-position、list-style-image:
ul { list-style: disc inside url("bullet.png"); }
其中,list-style-type表示符號樣式,list-style-position表示符號位置,可選值為inside(默認值)和outside,表示符號在文本內或文本外;list-style-image表示自定義符號圖片的路徑。
需要注意的是,list-style只對li元素有效。