CSSでチェックマーク(リストタグ)を作る
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 |
ul { border: solid 2px skyblue;/*線の設定*/ padding: 0.5em 1em 0.5em 2.3em; position: relative; } ul li { line-height: 1.5; padding: 0.5em 0; list-style-type: none!important; } ul li:before {/*疑似要素*/ font-family: FontAwesome; content: "\f075";/*アイコンの種類*/ position: absolute; left : 1em; /*左端からのアイコンまで*/ color: skyblue; /*アイコン色*/ } |