HTMLDOMスタイルのminHeightプロパティ
DOMスタイルのminHeightプロパティは、HTMLドキュメント内の要素の最小の高さを返し、変更します。
構文
以下は構文です-
-
minHeightを返す
object.style.minHeight
-
minHeightの変更
object.style.minHeight = “value”
値
ここで、値は-
になります。値 | 説明 |
---|---|
継承 | このプロパティ値は親要素から継承されます。 |
初期 | このプロパティ値をデフォルト値に設定しました。 |
長さ | 長さの単位で値を設定します。 |
パーセンテージ(%) | 親要素の高さのパーセンテージで値を設定します。 |
例
スタイルminHeightプロパティの例を見てみましょう-
<!DOCTYPE html> <html> <head> <style> body { color: #000; background-image: linear-gradient(to top, #a18cd1 0%, #fbc2eb 100%); height: 100vh; } p { border: 2px solid #fff; width: 300px; } .btn { background: coral; border: none; height: 2rem; border-radius: 2px; width: 40%; display: block; color: #fff; outline: none; cursor: pointer; } </style> </head> <body> <h1>DOM Style minHeight Property Example</h1> <p> This is paragraph 1 with some dummy text. This is paragraph 1 with some dummy text. This is paragraph 1 with some dummy text. This is paragraph 1 with some dummy text. This is paragraph 1 with some dummy text. This is paragraph 1 with some dummy text. </p> <button onclick="add()" class="btn">Set minHeight</button> <script> function add() { document.querySelector('p').style.minHeight = "300px"; } </script> </body> </html>
出力
これにより、次の出力が生成されます-
「minHeightを設定」をクリックします 段落要素の最小の高さを設定するための「」ボタン-
-
HTMLDOMスタイルのcounterIncrementプロパティ
HTML DOMスタイルのcounterIncrementプロパティは、1つ以上のCSSカウンターの値を増減するために使用されます。これは通常、counterResetおよびcontentプロパティと一緒に使用されます。 以下は、-の構文です。 counterIncrementプロパティの設定- object.style.counterIncrement = "none|id|initial|inherit" 上記のプロパティ値は次のように説明されます- 値 説明 なし これはデフォルト値であり、カウンターはインクリメントされません。
-
HTMLDOM値プロパティ
HTML DOM valueプロパティは、要素の属性の値に対応する文字列を返します。 以下は構文です- 文字列値を返す elementAttribute.value HTMLDOM値の例を見てみましょう プロパティ- 例 <!DOCTYPE html> <html> <head> <title>HTML DOM value</title> <style> * { padding: 2px; margin:5p