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

レスポンシブ画像にはCSSmax-widthプロパティを使用します


次のコードを実行して、レスポンシブ画像のmax-widthプロパティを実装してみてください

<!DOCTYPE html>
<html>
   <head>
      <meta name = "viewport" content = "width = device-width, initial-scale = 1.0">
      <style>
         img {
            max-width: 100%;
            height: auto;
         }
      </style>
   </head>
   <body>
      <p>To check the effect, you need to resize the browser.</p>
      <img src = "https://www.tutorialspoint.com/python/images/python-data-science.jpg" alt = "Python Data Science" width = "400" height = "300">
   </body>
</html>

  1. CSSでレスポンシブ画像を作成するにはどうすればよいですか?

    以下は、CSSを使用してレスポンシブ画像を作成するためのコードです- 例 <!DOCTYPE html> <html> <head> <meta name="viewport" content="width=device-width, initial-scale=1"> <style> img {    width: 100%;    max-width: 1000px; } </style> </head> <body>

  2. IE8以下を含むすべてのWebブラウザーのCSS画像の不透明度

    プロパティの不透明度は、究極の最新のソリューションであり、Firefox 0.9以降、Safari 2、Opera 9以降、IE 9以降、およびGoogleChromeのすべてのバージョンで機能します。 -moz-opacityプロパティは、0.9より古いFirefoxバージョンの不透明度プロパティです。–khtml-opacityプロパティは、1から始まるサファリバージョン用です。filterプロパティは、不透明度のような効果を与える5〜9のIEブラウザ用です。 以下は、すべてのブラウザでCSSを使用した画像の不透明度のコードです- 例 <!DOCTYPE html> <