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

CSSでボックスの最小高さを設定します


最小の高さ プロパティは、ボックスの最小の高さを設定するために使用されます。 min-heightプロパティの値は、数値、長さ、またはパーセンテージにすることができます。

<html>
   <head>
   </head>
   <body>
      <p style = "width:400px; min-height:150px; border:1px solid blue; padding:5px; margin:10px;">
         This paragraph is 400px wide and min height is 150px
         This paragraph is 400px wide and min height is 150px
         This paragraph is 400px wide and min height is 150px
         This paragraph is 400px wide and min height is 150px
      </p>
      <img alt = "logo" src = "/css/images/logo.png" width = "100" height = "100" />
   </body>
</html>

  1. CSSで画像にボタンを設定

    次のコードを実行して、画像にボタンを設定してみてください。 例 <!DOCTYPE html> <html>    <head>       <style>          .box {             position: relative;             width: 100%;    

  2. CSSで要素のテキストを選択できるかどうかを設定します

    CSSのuser-selectプロパティを使用して、CSSで要素のテキストを選択できるかどうかを設定します。 例 <!DOCTYPE html> <html>    <head>       <style>          div {             user-select: none;          }   &nb