CSS ::marker
可讓您
變更內容,以及 HTML 清單中的項目符號和數字樣式。
虛擬元素簡介
虛擬元素代表文件中未顯示在
。舉例來說,您可以選取段落的第一行文字:
虛擬元素 p::first-line
(即使 HTML 元素沒有包裝)
提供文字說明
請參考下列未排序的 HTML 清單:
<ul>
<li>Lorem ipsum dolor sit amet consectetur adipisicing elit</li>
<li>Dolores quaerat illo totam porro</li>
<li>Quidem aliquid perferendis voluptates</li>
<li>Ipsa adipisci fugit assumenda dicta voluptates nihil reprehenderit
consequatur alias facilis rem</li>
<li>Fuga</li>
</ul>
使用預設樣式時會顯示如下:
每個 <ul>
元素開頭的點會在轉譯清單時產生,且沒有自己的 HTML 元素。::marker
是代表該點的擬似元素,或排序清單元素開頭的數字。
建立標記
::marker
虛擬元素標記方塊會在每個
清單項目元素 (位於實際內容和 ::before
之前)
虛擬元素
li::before {
content: "::before";
background: lightgray;
border-radius: 1ch;
padding-inline: 1ch;
margin-inline-end: 1ch;
}
清單項目通常是 <li>
個 HTML 元素,但您可以使用 display: list-item
將其他元素轉換成清單項目。
<dl>
<dt>Lorem</dt>
<dd>Lorem ipsum dolor sit amet consectetur adipisicing elit</dd>
<dd>Dolores quaerat illo totam porro</dd>
<dt>Ipsum</dt>
<dd>Quidem aliquid perferendis voluptates</dd>
</dl>
dd {
display: list-item;
list-style-type: "🤯";
padding-inline-start: 1ch;
}
設定標記樣式
在 ::marker
提供前,您可以使用
list-style-type
和 list-style-image
即可變更清單項目符號:
li {
list-style-image: url(/right-arrow.svg);
/* OR */
list-style-type: '👉';
padding-inline-start: 1ch;
}
::marker
新增了一項功能,可變更標記的顏色、大小和間距。
可讓您在 CSS 中個別或全域指定標記虛擬元素:
li::marker {
color: hotpink;
}
li:first-child::marker {
font-size: 5rem;
}
與 list-style-type
相比,::marker
可讓您進一步掌控標記樣式。
但不適用於所有 CSS 資源可使用的屬性如下:
animation-*
transition-*
color
direction
font-*
content
unicode-bidi
white-space
使用 content
(而非 list-style-type
) 變更 ::marker
的內容。
在下一個範例中,我們說明瞭 list-style-type
屬性如何套用至整個
清單項目,而 ::marker
則可讓您僅指定標記方塊。background
屬性可與 list-style-type
搭配使用,但無法與 ::marker
搭配使用。
li:nth-child(1) { list-style-type: '?'; font-size: 2rem; background: hsl(200 20% 88%); animation: color-change 3s ease-in-out infinite; }
li:nth-child(2)::marker { content: '!'; font-size: 2rem; background: hsl(200 20% 88%); animation: color-change 3s ease-in-out infinite; }
變更標記內容
以下列舉幾個設定標記樣式的方法。
變更所有清單項目
li {
list-style-type: "😍";
}
/* OR */
li::marker {
content: "😍";
}
只變更一個清單項目
li:last-child::marker {
content: "😍";
}
使用 SVG 定義標記
li::marker {
content: url(/heart.svg);
content: url(#heart);
content: url("data:image/svg+xml;charset=UTF-8,<svg xmlns='http://www.w3.org/2000/svg' version='1.1' height='24' width='24'><path d='M12 21.35l-1.45-1.32C5.4 15.36 2 12.28 2 8.5 2 5.42 4.42 3 7.5 3c1.74 0 3.41.81 4.5 2.09C13.09 3.81 14.76 3 16.5 3 19.58 3 22 5.42 22 8.5c0 3.78-3.4 6.86-8.55 11.54L12 21.35z' fill='none' stroke='hotpink' stroke-width='3'/></svg>");
}
變更已排序的清單
但 <ol>
呢?已排序清單項目上的標記是由數字
而非點或項目符號在 CSS 中,這些稱為
計數器、
而且具備屬性可設定或重設號碼的開始和結束位置
並換算成羅馬數字您也可以使用 ::marker
為計數器設定樣式,甚至使用標記內容值來建立自己的編號呈現方式。
li::marker {
content: counter(list-item) "› ";
color: hotpink;
}
偵錯
Chrome 開發人員工具 Cab 可協助你檢查、偵錯及修改要套用的樣式
::marker
虛擬元素。
資源
你可以透過以下位置進一步瞭解 ::marker
: