HTMLDOMスタイルcolumnRuleStyleプロパティ
HTML DOMスタイルcolumnRuleStyleプロパティは、列ルールのスタイルを定義または返すために使用されます。
以下は、-
の構文です。columnRuleStyleプロパティの設定-
object.style.columnRuleStyle = "none|hidden|dotted|dashed|solid|double|groove|ridge|inset|outset| initial|inherit"
上記のプロパティ値は次のように説明されます-
なし | これは、ルールを指定しないデフォルト値です。 |
非表示 | これは「none」と同じですが、ルールスペースを使用します。基本的には透明ですが、まだそこにあります。 |
点線 | これは点線のルールを定義します。 |
破線 | これは破線のルールを定義します。 |
固体 | これは堅実なルールを定義します。 |
ダブル | これは二重ルールを定義します。 |
溝 | これは3Dグルーブルールを定義し、リッジの反対です。 |
リッジ | これは3D隆起ルールを定義し、溝の反対です |
挿入 | これは3Dルールの境界線を定義し、効果は埋め込まれているように見えます。それは最初の反対の効果を生み出します。 |
columnRuleStyleプロパティの例を見てみましょう-
例
<!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>
出力
「列ルールスタイルの変更」をクリックすると ボタン-
-
HTMLDOMスタイルcolumnRuleWidthプロパティ
HTML DOMのcolumnRuleWidthプロパティは、列ルールの幅を設定または取得するために使用されます。 以下は、-の構文です。 columnRuleWidthプロパティの設定- object.style.columnRuleWidth = "medium|thin|thick|length|initial|inherit" 上記のプロパティ値は次のように説明されます- 値 説明 薄い これは薄いルールを指定します。 中 これは中程度のルールを指定し、デフォルト値です。 厚い これは薄いルールを指定します。
-
HTMLDOMスタイルcolumnRuleColorプロパティ
HTML DOMのcolumnRuleColorプロパティは、列間のルールの色を設定または返すために使用されます。 以下は、-の構文です。 columnRuleColorプロパティの設定- object.style.columnRuleColor = "color|initial|inherit" ここで、colorはルールの色を指定します。 Initialは値をデフォルト値に設定し、inheritはそれを親プロパティ値に設定します。 columnRuleColorプロパティの例を見てみましょう- 例 <!DOCTYPE html> <html&g