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

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


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

<html>
   <head>
   </head>
   <body>
      <p style = "width:400px; max-height:10px; border:2px solid green; padding:10px; margin:15px;">
         This paragraph is 400px wide and max height is 10px
         This paragraph is 400px wide and max height is 10px
         This paragraph is 400px wide and max height is 10px
         This paragraph is 400px wide and max height is 10px
      </p>
      <br>
      <br>
      <br>
      <img alt = "logo" src = "/css/images/logo.png" width = "210" 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