0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

css list-style-position list-style-image 編

Posted at

リストマーカーの表示位置を変更する方法

list-style-positionプロパティを使うことでリストマーカーをどの位置に表示するかを指定することができます。
指定方法は2つです

  • outside リストマーカーをボックスの外側に表示
  • inside リストマーカーをボックスの内側に表示

今回作成したコードと見本画像です。わかりやすいようにliタグに背景色をつけています。一目でリストマーカを含むか判断できると思います

indexx.html
<!DOCTYPE html>
<html lang ="ja">
    <head>
        <meta charset="UTF-8">
        <link rel="stylesheet" href = "style.css">
    </head>

    <body>

        <ol class="decimal">
            <li>リスト1</li>
            <li>リスト2</li>
            <li>リスト3</li>
        </ol>
        <ul class="circle">
            <li>リスト1</li>
            <li>リスト2</li>
            <li>リスト3</li>
        </ul>
        <ul class="square">
            <li>リスト1</li>
            <li>リスト2</li>
            <li>リスト3</li>
        </ul>
 
    </body>

</html>

style.css
.decimal{
    list-style-type: decimal;
}

.square{
    list-style-type: square;
    
}

.circle{
    list-style-type: circle;
}

ul{
    list-style-position: inside;
}

ol{
    list-style-position: outside;
}
li{
    background-color: aquamarine;
}

スクリーンショット (1324).png

リストマーカーに画像を使う方法 list-style-imageプロパティ

list-style-imageプロパティを使うことでリストマーカーを好きな画像に変更することができます。
今回は表示が見切れてしまうためmargin-leftを使って余白を作りました

index.html
<!DOCTYPE html>
<html lang ="ja">
    <head>
        <meta charset="UTF-8">
        <link rel="stylesheet" href = "style.css">
    </head>

    <body>


        <ul class="circle">
            <li>リスト1</li>
            <li>リスト2</li>
            <li>リスト3</li>
        </ul>
        <ul class="square">
            <li>リスト1</li>
            <li>リスト2</li>
            <li>リスト3</li>
        </ul>
 
    </body>

</html>
style.css
ul{
    margin-left: 10px;
    list-style-image: url("style.png");
}

自作の画像
style.png

スクリーンショット (1325).png

リストマーカーをまとめて指定する list-styleプロパティ

list-styleプロパティを使うことでまとめて指定することができます。
リストマーカーに画像とマーカーの表示プロパティの両方を記述した場合画像を優先して表示します。スクリーンショット (1326).png

index.html

<!DOCTYPE html>
<html lang ="ja">
    <head>
        <meta charset="UTF-8">
        <link rel="stylesheet" href = "style.css">
    </head>

    <body>


        <ul class="circle">
            <li>リスト1</li>
            <li>リスト2</li>
            <li>リスト3</li>
        </ul>
        <ul class="square">
            <li>リスト1</li>
            <li>リスト2</li>
            <li>リスト3</li>
        </ul>
 
    </body>

</html>

style.css
ul{
    margin-left: 10px;
    list-style: url("style.png") square inside;
}

li{
    background-color: aqua;
}


実際の画像

uploading...0
uploading...0

0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?