本篇文章帶給大家的內容是介紹css中list-style屬性是什麼?如何設定清單樣式?有需要的朋友可以參考一下,希望對你們有幫助。
在前端開發中,我們可以透過css屬性來設定不同的列表樣式,下面我們來看看css設定列表樣式的相關屬性。 【推薦影片學習:css教學】
list-style屬性
list-style屬性是速記屬性,它可以設定與列表相關的三個不同屬性值:
ul { list-style: <list-style-type> || <list-style-position> || <list-style-image>; }
這是一個語法範例:
ul { list-style: square outside none; }
#相當於:
ul { list-style-type: square; list-style-position: outside; list-style-image: none; }
在簡寫中,如果省略任何值,它們將恢復到其初始狀態。
list-style-type屬性
list-style-type屬性透過在清單中設定每個標記或項目符號的內容來定義清單的類型。可接受的關鍵字值list-style-type包括:
disc,circle,square,decimal,decimal-leading-zero,lower-roman,upper-roman,lower-greek,lower-latin,upper -latin,armenian,georgian,lower-alpha,upper-alpha,none
#在CSS3中引入了非關鍵字值,但是對於它們來說,瀏覽器可以支援的還是很少。
我們來看看每個關鍵字值的效果:
list-style-type屬性適用於所有清單以及設定為的任何元素display : list-item。
清單標記的顏色將是元素的設定顏色(透過color屬性設定)。
list-style-position屬性
list-style-position屬性定義清單標記的位置,並接受下列兩個值之一:「inside」或「 outside」。下面我們來看看它們的效果,從清單中刪除了填充,並添加了左側紅色邊框:
list-style-image屬性
list-style-image屬性決定清單標記是否使用圖像設置,並接受值「none」或指向圖像的URL:
ul { list-style-image: url(images/bullet.png); }
我們來看看設定list-style-image屬性後的清單效果:
瀏覽器支援
IE6 / 7不支持所有關鍵字值,list-style-type屬性還有一個錯誤,浮動清單項目是不會顯示其清單標記。可以透過list-style-image在列表項目上使用背景圖像來解決此問題。
總結:以上就是這篇文章所介紹的css設定清單樣式的方法,希望能對大家的學習有所幫助。
以上是css如何設定清單樣式?列表樣式的實現的詳細內容。更多資訊請關注PHP中文網其他相關文章!