๐Ÿ“Œย list-style-type

list-style-type์€ ๋ชฉ๋ก ํ•ญ๋ชฉ ์š”์†Œ์˜ ๋งˆ์ปค(์˜ˆ: disc, circle ๋“ฑ)๋ฅผ ์„ค์ •ํ•˜๋Š” ์†์„ฑ์ž…๋‹ˆ๋‹ค.

ul {
	list-style-type: disc;
}

ol {
	list-style-type: none;
}

MDN list-style-type ์†์„ฑ

๐Ÿ“Œย list-style-position

list-style-position์€ ๋ชฉ๋ก ํ•ญ๋ชฉ ๋งˆ์ปค์™€ ํ…์ŠคํŠธ ๊ฐ„์˜ย ์œ„์น˜๋ฅผ ์„ค์ •ํ•  ์ˆ˜ ์žˆ๋Š” ์†์„ฑ์œผ๋กœ ๊ธฐ๋ณธ๊ฐ’์€ outside ์ž…๋‹ˆ๋‹ค.

ul {
	list-style-position: inside;
}

ol {
	list-style-position: outline;
}

MDN list-style-position ์†์„ฑ

๐Ÿ“Œย list-style-image

list-style-image๋ฅผ ์‚ฌ์šฉํ•˜์—ฌ ๋ชฉ๋ก ํ•ญ๋ชฉ ๋งˆ์ปค๋กœ ์‚ฌ์šฉํ•  ์ด๋ฏธ์ง€๋ฅผ ์„ค์ •ํ•  ์ˆ˜ ์žˆ์œผ๋ฉฐ ๋งˆ์ปค๋กœ ๊ทธ๋ž˜๋””์–ธํŠธ ํšจ๊ณผ๋ฅผ ์ ์šฉํ•˜๋Š” ๊ฒƒ๋„ ๊ฐ€๋Šฅํ•ฉ๋‹ˆ๋‹ค.

ul {
	list-style-image: url("../images/new.png");
}

ol {
	list-style-image: linear-gradient(to left bottom, #foo, #0f0);
}

MDN list-style-image ์†์„ฑ

๐Ÿ“Œย list-style

list-style ์†์„ฑ์€ list-style-type, list-style-image, list-style-position ์†์„ฑ ๊ฐ’์„ ํ•œ ๋ฒˆ์— ์„ค์ •ํ•  ์ˆ˜ ์žˆ๋Š” ๋‹จ์ถ• ์†์„ฑ(Shorthand Porperty)์ž…๋‹ˆ๋‹ค.

ul {
	list-style: circle inside;
}

ol {
	list-style: upper-roman url("../images/new.png") outside;
}

MDN list-style ์†์„ฑ