您好,登錄后才能下訂單哦!
本篇內容介紹了“CSS list-style-type屬性的使用方法”的有關知識,在實際案例的操作過程中,不少人都會遇到這樣的困境,接下來就讓小編帶領大家學習一下如何處理這些情況吧!希望大家仔細閱讀,能夠學有所成!
設置對象的行項標記的預定義類型。
語法
{ list-style-type: sType }
可能的值
sType
一個字符串,用于指定以下值之一:
disc | 默認值。實心圓。 |
circle | 空心圓。 |
decimal | 1、2、3、4 等等。 |
lower-alpha | a、b、c、d 等等。 |
lower-roman | i、ii、iii、iv 等等。 |
none | 不顯示任何標記。 |
square | 實心正方形。 |
upper-alpha | A、B、C、D 等等。 |
upper-roman | I、II、III、IV 等等。 |
該屬性的默認值為 disc 。該屬性會被繼承。
注解
如果 list-style-image 屬性的值設置為 none ,或者無法顯示 URL 指向的圖像,則 list-style-type 屬性決定 list-item 標記的外觀。
list-style-type 屬性可在應用 margin 和 display:list-item 屬性之后應用于任何元素。
如果使用其中一個 margin 屬性將行項的左邊距設置為 0,則不會顯示列表項標記。該邊距至少應設置為 30 磅。
示例
下面的示例使用 list-style-type 屬性設置標記。本示例在內嵌(全局)樣式表中使用 UL 元素作為選擇器,以將標記類型更改為 circle :
代碼如下:
<style>
ul {list-style-type:circle}
</style>
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 | inherit
disc: 點
circle: 圓圈
square: 正方形
decimal: 數字
decimal-leading-zero: 十進制數,不足兩位的補齊前導0,例如: 01, 02, 03, ..., 98, 99
lower-roman: 小寫羅馬文字,例如: i, ii, iii, iv, v, ...
upper-roman: 大寫羅馬文字,例如: I, II, III, IV, V, ...
lower-greek: 小寫希臘字母,例如: α(alpha), β(beta), γ(gamma), ...
lower-latin: 小寫拉丁文,例如: a, b, c, ... z
upper-latin: 大寫拉丁文,例如: A, B, C, ... Z
armenian: 亞美尼亞數字
georgian: 喬治亞數字,例如: an, ban, gan, ..., he, tan, in, in-an, ...
lower-alpha: 小寫拉丁文,例如: a, b, c, ... z
upper-alpha: 大寫拉丁文,例如: A, B, C, ... Z
none: 無(取消所有的list樣式)
inherit:繼承
初始值: disc
繼承性: 是
適用于: 所有屬于list的元素
list,中文"列表"的意思.style,中文"樣式"的意思.type,中文"類型"的意思.
示例
CSS Code復制內容到剪貼板
ul
{
list-style-type:disc;
}
ul#circle
{
list-style-type:circle;
}
ul#square
{
list-style-type:square;
}
ul#decimal
{
list-style-type:decimal;
}
ul#decimal-leading-zero
{
list-style-type:decimal-leading-zero;
}
ul#lower-roman
{
list-style-type:lower-roman;
}
ul#upper-roman
{
list-style-type:upper-roman;
}
ul#lower-greek
{
list-style-type:lower-greek;
}
ul#lower-latin
{
list-style-type:lower-latin;
}
ul#upper-latin
{
list-style-type:upper-latin;
}
ul#armenian
{
list-style-type:armenian;
}
ul#georgian
{
list-style-type:georgian;
}
ul#lower-alpha
{
list-style-type:lower-alpha;
}
ul#upper-alpha
{
list-style-type:upper-alpha;
}
ul#none
{
list-style-type:none;
}
ol
{
list-style-type:lower-roman;
}
“CSS list-style-type屬性的使用方法”的內容就介紹到這里了,感謝大家的閱讀。如果想了解更多行業相關的知識可以關注億速云網站,小編將為大家輸出更多高質量的實用文章!
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。