CSS圖片標題列表樣式,常用于美化網頁中的標題和列表,讓頁面更加美觀。下面介紹幾種實現方式。
// 第一種,使用背景圖 ul li { background-image: url("images/bullet.png"); background-repeat: no-repeat; background-position: 0 50%; padding-left: 20px; list-style: none; } // 第二種,使用偽元素 ul li:before { content: ""; background-image: url("images/bullet.png"); background-repeat: no-repeat; background-position: center; display: inline-block; margin-right: 10px; width: 20px; height: 20px; } // 第三種,使用unicode字符 ul li:before { content: "\2022"; margin-right: 10px; color: #000; }
以上三種方式都可以實現類似于列表前面帶小圖標的效果。其中第一種方式使用背景圖,需要注意背景圖的大小和位置,如果圖標太小或者太大,會影響到整個列表的布局效果。第二種方式使用偽元素,相對來說更加靈活,可以控制小圖標的大小、位置和顏色等屬性。第三種方式使用unicode字符,相對來說更加簡單,無需引入圖片資源,但是缺點是圖標樣式不太靈活。
上一篇Python目錄自動生成
下一篇macos 12.1更新