Computer >> 컴퓨터 >  >> 프로그램 작성 >> HTML

HTML DOM 스타일 listStyle 속성

<시간/>

HTML DOM 스타일 listStyle 속성은 list-style-type, list-style-position 및 list-style-image라는 세 가지 속성을 설정하거나 반환하는 데 사용됩니다.

다음은 −

의 구문입니다.

listStyle 속성 설정 -

object.style.listStyle = "type position image|initial|inherit"

위의 속성은 다음과 같이 설명됩니다 -

매개변수
설명
유형
목록 항목 마커 유형을 정의합니다.
위치
목록 항목 마커 위치 초기화
이미지
목록 항목 마커로 설정된 이미지를 지정합니다.
초기
이 속성을 초기 값으로 초기화합니다.
상속
상위 속성 값 상속

listStyle 속성의 예를 살펴보겠습니다 -

예시

<!DOCTYPE html>
<html>
<head>
<script>
   function changeListStyle() {
      document.getElementById("LIST1").style.listStyle = "upper-roman";
      document.getElementById("Sample").innerHTML="The list style has been changed to upper Roman";
   }
</script>
</head>
<body>
   <ul id="LIST1">
      <li>MANGO</li>
      <li>GUAVA</li>
      <li>LITCHI</li>
      <li>WATERMELON</li>
   </ul>
   <p>Click the below button to change the list style for the above div</p>
   <button type="button" onclick="changeListStyle()">Change list style</button>
   <p id="Sample"></p>
</body>
</html>

출력

HTML DOM 스타일 listStyle 속성

"목록 스타일 변경을 클릭하면 " 버튼 -

HTML DOM 스타일 listStyle 속성