1
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?

More than 1 year has passed since last update.

CSSでリストマーカーを作成する

Last updated at Posted at 2022-03-22

CSSでリストマーカーを作成する

CSSのリストマーカーはdiscなどがあるが、色を変更することや形を変更することができない。

スクリーンショット 2022-03-23 082534.jpg

css
li {
	position:relative;
	padding-left:15px;
	list-style :none;
}
li:before {
	content:"";
	width:10px;
	height:10px; 
	background:#ff0000;
	position:absolute;
	left:0px;
	top:5px;
}

スクリーンショット 2022-03-23 083600.jpg

上の例では赤い四角のリストマーカーが作成できる。
丸いマーカーが欲しい場合は li:beforeの中にborder-radiusを追加する

1
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
1
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?