list-style-position는 목록 형태에서 블롯이나 번호를 좀 더 안쪽으로 들여 써지게 하는 속성
속성 |
설명 |
inside |
블롯이나 숫자를 안쪽으로 들여씀 |
outside |
블롯이나 숫자를 밖으로 내어씀 |
속성 |
설명 |
inside |
블롯이나 숫자를 안쪽으로 들여씀 |
outside |
블롯이나 숫자를 밖으로 내어씀 |
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
<!
DOCTYPE
html>
<html lang
=
"kr"
>
<head>
<meta charset
=
"utf-8"
>
<title>
키보드와 하루
</title>
</head>
<body>
1
<ul style
= '
list-style-type
:
disc
'
>
<li>
목록1
</li>
<li>
목록2
</li>
<li>
목록3
</li>
</ul>
2
<ul style
= '
list-style-type
:
disc
;
list-style-position
:
inside
'
>
<li>
목록4
</li>
<li>
목록5
</li>
<li>
목록6
</li>
</ul>
</body>
</html>
|
[css3] background-color - 배경 색 지정 (0) | 2021.04.13 |
---|---|
[css3] list-style - 목록 속성 한꺼번에 지정 (0) | 2021.04.12 |
[css3] list-style-image - 목록 스타일을 이미지로 넣기 (0) | 2021.04.09 |
[css3] list-style-type - 목록 불릿과 번호 스타일 지정 (0) | 2021.04.09 |
[css3] text-overflow - 넘치는 텍스트 표기 (0) | 2021.04.08 |