Computer >> Máy Tính >  >> Lập trình >> HTML

HTML DOM Style columnRuleStyle Thuộc tính

Thuộc tính Kiểu DOM HTML columnRuleStyle được sử dụng để xác định hoặc trả về kiểu của quy tắc cột.

Sau đây là cú pháp cho -

Đặt thuộc tính columnRuleStyle -

object.style.columnRuleStyle = "none|hidden|dotted|dashed|solid|double|groove|ridge|inset|outset|
initial|inherit"

Các giá trị thuộc tính trên được giải thích như sau -

Giá trị Mô tả
không Đây là giá trị mặc định không xác định quy tắc.
ẩn Điều này giống như "none" nhưng vẫn sẽ chiếm không gian quy tắc. Về cơ bản nó là minh bạch nhưng vẫn còn đó.
chấm Điều này xác định một quy tắc chấm.
gạch ngang Điều này xác định một quy tắc đứt nét.
rắn Điều này xác định một quy tắc vững chắc.
gấp đôi Điều này xác định quy tắc kép.
rãnh Điều này xác định quy tắc rãnh 3d và ngược lại với rãnh.
sườn núi Điều này xác định quy tắc có rãnh 3D và ngược lại với rãnh
chèn Điều này xác định đường viền quy tắc 3D và hiệu ứng trông giống như nó được nhúng. Nó tạo ra hiệu ứng ngược lại ngay từ đầu.

Chúng ta hãy xem một ví dụ cho thuộc tính columnRuleStyle -

Ví dụ

<!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 changeColumnRuleStyle(){
      document.getElementById("DIV1").style.columnRuleStyle="dashed";
      document.getElementById("Sample").innerHTML="The column rule style is now changed.";
   }
</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 style by clicking the below button</p>
   <button onclick="changeColumnRuleStyle()">Change Column Rule Style</button>
   <p id="Sample"></p>
</body>
</html>

Đầu ra

HTML DOM Style columnRuleStyle Thuộc tính

Khi nhấp vào “ Thay đổi kiểu quy tắc cột” nút -

HTML DOM Style columnRuleStyle Thuộc tính