HTML
 Computer >> コンピューター >  >> プログラミング >> HTML

HTMLDOMスタイルの列のプロパティ


HTML DOMのcolumnsプロパティは、columnWidthプロパティとcolumnCountプロパティを操作するために使用されます。

以下は、-

の構文です。

列プロパティの設定-

object.style.columns = "auto|column-width column-count|initial|inherit"

上記のプロパティ値は次のように説明されます-


説明
自動
これにより、column-widthとcolumn-countがautoに設定され、デフォルト値になります。
columnWidth
列幅を指定します。
columnCount
列番号の指定。
初期
このプロパティを初期値に設定します。
継承
親プロパティ値を継承する

columnsプロパティの例を見てみましょう-

<!DOCTYPE html>
<html>
<head>
<style>
   #DIV1{
      columns: 5rem auto;
   }
   img {
      border: 1px solid brown;
   }
</style>
<script>
   function changeColumns(){
      document.getElementById("DIV1").style.columns="10px 3";
      document.getElementById("Sample").innerHTML="The columns are now modified";
   }
</script>
</head>
<body>
   <div id="DIV1">
      <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/home_time_series.png"><br/>
      <img src="https://www.tutorialspoint.com/images/microsoftproject.png"><br/>
   </div>
   <p>Change the above div columns property by clicking the below button</p>
   <button onclick="changeColumns()">Change Columns</button>
   <p id="Sample"></p>
</body>
</html>

出力

HTMLDOMスタイルの列のプロパティ

列の変更」をクリックすると 」ボタン-

HTMLDOMスタイルの列のプロパティ


  1. HTMLDOMスタイルcolumnRuleStyleプロパティ

    HTML DOMスタイルcolumnRuleStyleプロパティは、列ルールのスタイルを定義または返すために使用されます。 以下は、-の構文です。 columnRuleStyleプロパティの設定- object.style.columnRuleStyle = "none|hidden|dotted|dashed|solid|double|groove|ridge|inset|outset| initial|inherit" 上記のプロパティ値は次のように説明されます- 値 説明 なし これは、ルールを指定しないデフォルト値です。 非表示 これは「non

  2. HTMLDOMスタイルcolumnRuleColorプロパティ

    HTML DOMのcolumnRuleColorプロパティは、列間のルールの色を設定または返すために使用されます。 以下は、-の構文です。 columnRuleColorプロパティの設定- object.style.columnRuleColor = "color|initial|inherit" ここで、colorはルールの色を指定します。 Initialは値をデフォルト値に設定し、inheritはそれを親プロパティ値に設定します。 columnRuleColorプロパティの例を見てみましょう- 例 <!DOCTYPE html> <html&g