목록 스타일 위치 속성은 마커가 글머리 기호가 포함된 상자 내부 또는 외부에 표시되어야 하는지 여부를 나타냅니다.
텍스트가 두 번째 줄로 넘어가면 inside 값에 대해 텍스트가 마커 아래로 줄바꿈됩니다. .
예시
텍스트가 두 번째 줄로 넘어가면 outside. 값에 대해 텍스트가 첫 번째 줄의 시작 부분에 맞춰 정렬됩니다.
<html> <head> </head> <body> <ul style = "list-style-type:circle; list-style-position:outside;"> <li>Maths</li> <li>Science</li> </ul> </body> </html>