欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  web前端

css怎么让图片随屏幕变化大小

程序员文章站 2022-03-14 17:39:14
...

css让图片随屏幕变化大小的方法:1、利用“width height auto”属性来缩放图片;2、利用“max-width max-height”属性来设置最大宽高。

css怎么让图片随屏幕变化大小

本教程操作环境:windows7系统、css3版,Dell G3电脑。

推荐:《css视频教程

有时我们希望图片能随屏幕大小的缩放而缩放,两种情况:

  • 单个图片缩放

  • 图片在盒子内缩放

裸图片的缩放

<style type="text/css">
  img {
    width: auto;
    height: auto;
    max-width: 100%;
    max-height: 100%;
  }
</style>
<body>
  <img src="https://i.loli.net/2018/06/17/5b2639a6e6c61.jpeg" alt="timg.jpeg" title="timg.jpeg" />
</body>

css怎么让图片随屏幕变化大小

图片在一个盒子内

<style type="text/css">
  #box {
    width: auto;  /* 盒子也要自动缩放 */
    height: auto; 
    max-width: 600px;
    max-height: 500px; /* 盒子的高度,需要大于图片100%宽度时 图片的高度 */
    border: 5px solid yellow;
  }
  img {
    width: auto;
    height: auto;
    max-width: 100%; /* 只要宽度100% 结合前面 auto就可以了 */
  }
</style>
<body>
  <div id="box">
    <img src="https://i.loli.net/2018/06/17/5b2639a6e6c61.jpeg" alt="timg.jpeg" title="timg.jpeg" />
    下面的文字
  </div>
</body>

css怎么让图片随屏幕变化大小

ps:

1 、利用width height auto 来缩放

2、利用max-width max-height 来设置最大宽高,为100%表示可原始最大。

以上就是css怎么让图片随屏幕变化大小的详细内容,更多请关注其它相关文章!

相关标签: css