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

CSSのmin-heightプロパティ


CSSのmin-heightプロパティを使用して、要素のコンテンツボックスに固定の最小の高さを定義できます。これにより、高さが最小の高さよりも小さい場合でも、要素のコンテンツボックスを小さくすることはできません。

構文

CSSのmin-heightプロパティの構文は次のとおりです-

Selector {
   min-height: /*value*/
}

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

<!DOCTYPE html>
<html>
<head>
<title>CSS min-height Property</title>
</head>
<style>
* {
   padding: 2px;
   margin:5px;
}
button {
   border-radius: 10px;
}
#containerDiv {
   width:70%;
   margin: 0 auto;
   padding:20px;
   background-image: linear-gradient(135deg, #dc3545 0%, #9599E2 100%);
   text-align: center;
   border-radius: 10px;
}
#contentDiv{
   min-height:150px;
}
</style>
<body>
<div id="containerDiv">
<div id="contentDiv">
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.
</div>
<button onclick="add()" class="btn">Set minHeight</button>
</div>
<script>
   function add() {
      document.querySelector('#contentDiv').style.minHeight = "100px";
   }
</script>
</body>
</html>

出力

上記のコードの出力は次のとおりです-

[minHeightを設定]ボタンをクリックする前に-

CSSのmin-heightプロパティ

[minHeightを設定]ボタンをクリックした後-

CSSのmin-heightプロパティ

CSSのmin-heightプロパティの別の例を見てみましょう-

<!DOCTYPE html>
<html>
<head>
<title>CSS min-height Property</title>
</head>
<style>
* {
   padding: 2px;
   margin:5px;
}
button {
   border-radius: 10px;
}
#containerDiv {
   width:70%;
   margin: 0 auto;
   padding:20px;
   background-image: linear-gradient(135deg, #dc3545 0%, #9599E2 100%);
   text-align: center;
   border-radius: 10px;
}
#contentDiv1, #contentDiv2{
   width:50%;
   border: 2px solid black;
   margin: 0 auto;
}
</style>
<body>
<div id="containerDiv">
<div id="contentDiv1">
This is paragraph 1 with some dummy text. This is paragraph 1 with some dummy text.
</div>
<div id="contentDiv2">
This is paragraph 1 with some dummy text.
This is paragraph 1 with some dummy text.
This is paragraph 1 with some dummy.
</div>
<button onclick="add()" class="btn">Set minHeight</button>
</div>
<script>
   function add() {
      document.querySelector('#contentDiv1').style.minHeight = "95px";
   }
</script>
</body>
</html>

出力

上記のコードの出力は次のとおりです-

[minHeightを設定]ボタンをクリックする前に-

CSSのmin-heightプロパティ

[minHeightを設定]ボタンをクリックした後-

CSSのmin-heightプロパティ


  1. CSSのborder-colorプロパティ

    CSSのborder-colorプロパティは、要素の境界線の色を指定するために使用されます。また、border-top-color、border-right-color、border-left-color、border-right-colorプロパティを使用して、個々の辺の色を設定することもできます。 構文 CSSborder-colorプロパティの構文は次のとおりです- Selector {    border-color: /*value*/ } 次の例は、CSSのborder-colorプロパティ-を示しています。 例 <!DOCTYPE html>

  2. CSSのborder-styleプロパティ

    CSS border-styleプロパティは、要素の境界線スタイルを指定するために使用されます。また、border-topスタイル、border-rightスタイル、border-leftスタイル、border-rightスタイルのプロパティを使用して、個々の辺の境界線スタイルを定義することもできます。 構文 CSSボーダープロパティの構文は次のとおりです- Selector {    border: /*value*/ } 次の例は、CSSボーダースタイルのプロパティ-を示しています。 例 <!DOCTYPE html> <html> <