1. 程式人生 > 其它 >更改ul中li前點的樣式

更改ul中li前點的樣式

技術標籤:前端csshtml

更改ul中li前點的樣式

ul的type屬性有三種值,分別為:

  • circle 空心圓
  • disc 實心圓
  • square 實心方塊

而對於li前面的這些點可以新增color進行設定顏色。

				list-style: square;
				color: #3b99fc;

在這裡插入圖片描述