本章介紹給大家css中什麼是ul(列表樣式)? ul的使用方法(程式碼實例)。有一定的參考價值,有需要的朋友可以參考一下,希望對你有幫助。
CSS列表屬性作用如下:
設定不同的列表項標記為有序列表
設定不同的列表項標記為無序列表
設定清單項目標記為圖像
一、列表
在HTML中,有兩種類型的列表:
#無序列表- 列表項目標記以特殊圖形(如小黑點、小方框等)
#有序列表- 列表項目的標記有數字或字母
使用CSS,可以列出進一步的樣式,並可用圖像作為列表項目標記。
二、不同的清單項目標記
list-style-type屬性指定清單項目標記的類型是:
ul.a {list-style-type: circle;} /*无序,空心圆圈*/ ul.b {list-style-type: square;} /*无序,实现四方形*/ ol.c {list-style-type: upper-roman;} /*有序,罗马数字排序*/ ol.d {list-style-type: lower-alpha;} /*有序,小写字母排序*/
list-style- type屬性值:
三、標記為清單項目的圖片
##list-style-image 要指定清單項目標記的圖像,使用列表樣式圖像屬性:ul{ list-style-image: url('sqpurple.gif');}上面的例子在所有瀏覽器中顯示並不相同,IE和Opera顯示圖像標記比火狐,Chrome和Safari更高一點點。 如果你想在所有的瀏覽器放置相同的形象標誌,就應該使用瀏覽器相容性解決方案,流程如下瀏覽器相容性解決方案: #同樣在所有的瀏覽器,下面的例子會顯示的圖像標記:
ul { list-style-type: none; padding: 0px; margin: 0px; } ul li { background-image: url(sqpurple.gif); background-repeat: no-repeat; background-position: 0px 5px; padding-left: 14px; }例子解釋:ul:
#四、相對內容繪製列表標記
list-style-position屬性指示如何相對於物件的內容繪製清單項目標記,屬性值: #:
#五、列表-簡寫屬性
在單一屬性中可以指定所有的清單屬性。這就是所謂的簡寫屬性。 為清單使用簡寫屬性,清單樣式屬性設定如下:ul{list-style: square url("sqpurple.gif");}可以依序設定下列屬性:
六、所有的CSS清單屬性
#七、範例程式碼
/*无序列表*/ ul.a {list-style-type:circle;} /*无序,空心圆“○”*/ ul.b {list-style-type:disc;} /*无序,实心圆“●”*/ ul.c {list-style-type:square;}/*无序,实心正方形“■”*/ /*有序列表*/ ol.d {list-style-type:armenian;} /*有序,传统的亚美尼亚数字*/ ol.e {list-style-type:cjk-ideographic;} /*有序,浅白的表意数字*/ ol.f {list-style-type:decimal;} /*有序,数字1、2、3*/ ol.g {list-style-type:decimal-leading-zero;} /*有序,数字01、02、03*/ ol.h {list-style-type:georgian;} /*有序,传统的乔治数字*/ ol.i {list-style-type:hebrew;} /*有序,传统的希伯莱数字*/ ol.j {list-style-type:hiragana;} /*有序,日文平假名字符*/ ol.k {list-style-type:hiragana-iroha;} /*有序,日文平假名序号*/ ol.l {list-style-type:katakana;} /*有序,日文片假名字符*/ ol.m {list-style-type:katakana-iroha;} /*有序,日文片假名序号*/ ol.n {list-style-type:lower-alpha;} /*有序,小写英文字母a、b、c……*/ ol.o {list-style-type:lower-greek;} /*有序,基本的希腊小写字母*/ ol.p {list-style-type:lower-latin;} /*有序,小写拉丁字母*/ ol.q {list-style-type:lower-roman;} /*有序,小写罗马数字i、ii、iii……*/ ol.r {list-style-type:upper-alpha;} /*有序,大写英文字母A、B、C…… */ ol.s {list-style-type:upper-latin;} /*有序,大写拉丁字母*/ ol.t {list-style-type:upper-roman;} /*有序,大写罗马数字I、II、III……*/ ol.u {list-style-type:none;}/*不使用项目符号*/ ol.v {list-style-type:inherit;} /*继承*
以上是css中什麼是ul(列表樣式)? ul的使用方法(程式碼實例)的詳細內容。更多資訊請關注PHP中文網其他相關文章!