list-style์ css์์ฑ ์ค ํ๋๋ก, HTML์ ๋ชฉ๋ก ์์(`<ul>`, `<ol>`, `<dl>`)๋ฑ์ ๋ฆฌ์คํธ์์ ๋ฆฌ์คํธ ํญ๋ชฉ๋ค์ ๋ง์ปค(marker) ๋ชจ์์ ์ง์ ํ๋ CSS ์์ฑ์ผ๋ก, ํ ์คํธ ์์ ์ฌ์ฉ๋๋ ์ซ์, ๋ฌธ์, ์ด๋ฏธ์ง ๋ฑ์ ๋ง์ปค ๋ชจ์์ ์ง์ ํ ์ ์๋ค.
`list-style-type` ์์ฑ์ ๋ค์ํ ๊ฐ์ ๊ฐ์ง ์ ์์ผ๋ฉฐ, ์ผ๋ฐ์ ์ผ๋ก ๋ค์๊ณผ ๊ฐ์ ๊ฐ๋ค์ด ์ฌ์ฉ๋๋ค.
1. `none`
๋ชฉ๋ก ํญ๋ชฉ์ ๋ง์ปค๋ฅผ ํ์ํ์ง ์๋๋ค. ์ฆ, ๋ฒํธ๋ ๋ถ๋ฆฟ ๊ธฐํธ๊ฐ ๋ํ๋์ง ์๋๋ค.
2. `disc`
์ํ ๋ถ๋ฆฟ ๊ธฐํธ๋ฅผ ์ฌ์ฉํ๋ค. (default)
3. `circle`
๋น ์ ๊ธฐํธ๋ฅผ ์ฌ์ฉํ๋ค.
4. `square`
๋ค๋ชจ ์์ ๊ธฐํธ๋ฅผ ์ฌ์ฉํ๋ค.
5. `decimal`
1๋ถํฐ ์์ํ์ฌ ์ซ์๋ก ๋ฒํธ๋ฅผ ๋งค๊ธด๋ค.
6. `decimal-leading-zero`
01๋ถํฐ ์์ํ์ฌ 2์๋ฆฌ ์ซ์๋ก ๋ฒํธ๋ฅผ ๋งค๊ธด๋ค. (01, 02, ..., 10, 11, ...)
7. `lower-roman`
์๋ฌธ์ ๋ก๋ง ์ซ์๋ฅผ ์ฌ์ฉํ๋ค. (i, ii, iii, iv, ...)
8. `upper-roman`
๋๋ฌธ์ ๋ก๋ง ์ซ์๋ฅผ ์ฌ์ฉํ๋ค. (I, II, III, IV, ...)
9. `lower-alpha`
์๋ฌธ์ ์ํ๋ฒณ์ ์ฌ์ฉํ๋ค. (a, b, c, d, ...)
10. `upper-alpha`
๋๋ฌธ์ ์ํ๋ฒณ์ ์ฌ์ฉํ๋ค. (A, B, C, D, ...)
11. `lower-greek`
์๋ฌธ์ ๊ทธ๋ฆฌ์ค ๋ฌธ์๋ฅผ ์ฌ์ฉํ๋ค.
12. `upper-greek`
๋๋ฌธ์ ๊ทธ๋ฆฌ์ค ๋ฌธ์๋ฅผ ์ฌ์ฉํ๋ค.
์ด ์ธ์๋ ๋ค์ํ ํน์ํ ๋ชฉ๋ก ์คํ์ผ์ ์ง์ ํ ์ ์๋ค.
/* Partial list of types */
list-style-type: disc;
list-style-type: circle;
list-style-type: square;
list-style-type: decimal;
list-style-type: georgian;
list-style-type: trad-chinese-informal;
list-style-type: kannada;
/* <string> value */
list-style-type: "-";
/* Identifier matching an @counter-style rule */
list-style-type: custom-counter-style;
/* Keyword value */
list-style-type: none;
/* Global values */
list-style-type: inherit;
list-style-type: initial;
list-style-type: revert;
list-style-type: revert-layer;
list-style-type: unset;
๐ธ ์ถ์ฒ ๐ธ
'WEB' ์นดํ ๊ณ ๋ฆฌ์ ๋ค๋ฅธ ๊ธ
[ LocalStorage ] localStorage์์ ๋ฐฐ์ด(Array)๋ค๋ฃจ๊ธฐ. (0) | 2023.08.06 |
---|---|
[ CSS ] white-space ์์ฑ (0) | 2023.07.31 |
[ WEB ] CSR๊ณผ SSR ๋น๊ตํ๊ธฐ (1) | 2023.05.08 |
[ HTML5 ] HTML5 ์ถ๊ฐ ๊ธฐ๋ฅ ์ค๋ช (0) | 2023.04.23 |
[์๋ฌ] 400 Bad Request Request Header Or Cookie Too Large (0) | 2023.02.09 |