如何在不裁剪或丢失质量的情况下调整图像大小?

时间:2018-04-19 15:16:52

标签: html image sizing

我正在尝试将图片旁边的图片对齐,但是我遇到了图片尺寸问题。 我将在文本旁边放置许多行图像,因此我需要所有图像都具有相同的大小。

当我尝试插入图像时,它会变形或被切断。

我也希望所做的任何改变在移动设备上看起来都不错。

任何提示?

<div>
    <p style="float: left; padding-right: 50px;"><img src="https://blog.proven.com/wp-content/uploads/IND.jpg" height="200px" width="300px" border="1px"></p>
    <p><p align="right"><strong><font size="4">Proven Rating: <font color="#0077b3">★★★★★</font></font></strong></p>
Indeed is a widely used job board with over 200 million visitors a month, in 60 different countries. They post millions of job listings from other job boards, newspaper classifieds, personal ads, and more.</p>
</div>

1 个答案:

答案 0 :(得分:1)

使用CSS在图像上设置最大宽度,而不是内联大小属性。这消除了强制拉伸。

img {
  max-width: 300px;
}

Demo