简体   繁体   English

自动缩放html标签中的图片

[英]Auto scale image in html tag

有没有一种方法可以让Firefox(或一般的浏览器)根据窗口大小自动缩放HTML图像标签中的图像,然后按与浏览器相同的方式在单击图像时将其扩展为完整大小如果您直接查看图像会显示图像(右键单击并单击查看图像)?

You can't achieve the part where you want to make the image larger using click without some JS, but if you want the image to scale according to the browser size, you can use this in your CSS stylesheet: 如果没有一些JS,您就无法通过单击来实现放大图像的功能,但是如果您希望图像根据浏览器的尺寸进行缩放,则可以在CSS样式表中使用它:

img {
     max-width: 100%;
}

Read more about this here . 在此处阅读有关此内容的更多信息。

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM