Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有一个网络应用程序,让用户可以在其中上传他们的徽标图像。此图像对宽度和高度没有限制。然后在 JSP 中显示每个用户的徽标。问题是每个用户的徽标都有不同的尺寸(小,大......),这将是显示图像的最佳方式?
如果所有图像都将受到约束,则将宽度应用于父级并为图像添加最大宽度。
JSFiddle
<div class="img"> <img src="http://lorempixel.com/output/people-q-c-640-480-5.jpg" alt=""/> </div> .img { width:250px; } .img img { max-width:100%; }