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

HTML DOM 스타일 columnRuleWidth 속성

<시간/>

HTML DOM columnRuleWidth 속성은 열 규칙 너비를 설정하거나 가져오는 데 사용됩니다.

다음은 −

의 구문입니다.

columnRuleWidth 속성 설정 -

object.style.columnRuleWidth = "medium|thin|thick|length|initial|inherit"

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


설명
얇음
가는 규칙을 지정합니다.
중간
중간 규칙을 지정하며 기본값입니다.
두꺼움
가는 규칙을 지정합니다.
길이
규칙 너비를 길이 단위로 지정하는 데 사용됩니다.
초기
이 속성을 초기 값으로 초기화합니다.
상속
상위 속성 값 상속

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

예시

<!DOCTYPE html>
<html>
<head>
<style>
   #DIV1{
      padding: 5px;
      column-count: 5;
      column-rule-width: 9px;
      column-rule-color: lightblue;
      column-rule-style: solid;
   }
</style>
<script>
   function changeColumnRuleWidth(){
      document.getElementById("DIV1").style.columnRuleWidth="3px";
      document.getElementById("Sample").innerHTML="The column rule width is now reduced";
   }
</script>
</head>
<body>
   <div id="DIV1">
      <img src="https://www.tutorialspoint.com/images/Swift.png"><br/>
      <img src="https://www.tutorialspoint.com/images/xamarian.png"><br/>
      <img src="https://www.tutorialspoint.com/images/pl-sql.png"><br/>
      <img src="https://www.tutorialspoint.com/images/asp-net.png"><br/>
      <img src="https://www.tutorialspoint.com/images/powerbi.png"><br/>
      <img src="https://www.tutorialspoint.com/images/Tableau.png"><br/>
      <img src="https://www.tutorialspoint.com/images/Big-Data-Analytics.png"><br/>
      <img src="https://www.tutorialspoint.com/images/microsoftproject.png">
      <img src="https://www.tutorialspoint.com/images/QlikView.png"><br/>
      <img src="https://www.tutorialspoint.com/images/hadoop.png">
   </div>
   <p>Change the above div column rule width by clicking the below button</p>
   <button onclick="changeColumnRuleWidth()">Change Column Rule Width</button>
   <p id="Sample"></p>
</body>
</html>

출력

HTML DOM 스타일 columnRuleWidth 속성

"열 규칙 너비 변경을 클릭하면 " 버튼 -

HTML DOM 스타일 columnRuleWidth 속성