list-style-image
Baseline Widely available
This feature is well established and works across many devices and browser versions. It’s been available across browsers since July 2015.
list-style-image
は CSS のプロパティで、リスト項目のマーカーとして使われる画像を設定します。
ふつうは一括指定の list-style
を使ったほうが便利です。
試してみましょう
構文
css
/* キーワード値 */
list-style-image: none;
/* <url> 値 */
list-style-image: url("starsolid.gif");
/* 有効な画像値 */
list-style-image: linear-gradient(to left bottom, red, blue);
/* グローバル値 */
list-style-image: inherit;
list-style-image: initial;
list-style-image: revert;
list-style-image: unset;
値
<image>
-
マーカーとして使う画像の場所です。
none
-
画像をマーカーとして使用しないことを指定します。この値が設定された場合、代わりに
list-style-type
で定義されたマーカーが使われます。
公式定義
初期値 | none |
---|---|
適用対象 | リスト項目 |
継承 | あり |
計算値 | The keyword none or the computed <image> |
アニメーションの種類 | 離散値 |
形式文法
list-style-image =
<image> |
none
<image> =
<url> |
<gradient>
<url> =
<url()> |
<src()>
<url()> =
url( <string> <url-modifier>* ) |
<url-token>
<src()> =
src( <string> <url-modifier>* )
例
url 値の使用
HTML
html
<ul>
<li>Item 1</li>
<li>Item 2</li>
</ul>
CSS
css
ul {
list-style-image: url("starsolid.gif");
}
結果
グラデーションの使用
HTML
html
<ul>
<li>Item 1</li>
<li>Item 2</li>
</ul>
CSS
css
ul {
font-size: 200%;
list-style-image: linear-gradient(to left bottom, red, blue);
}
結果
仕様書
Specification |
---|
CSS Lists and Counters Module Level 3 # image-markers |
ブラウザーの互換性
BCD tables only load in the browser