将图像宽度增加到自动宽度的x倍

时间:2017-07-17 13:32:33

标签: html css css3 web-deployment

我想将图像宽度和高度增加到实际值的3倍,但我不知道图像的尺寸。我可以使用CSS吗? 我尝试了calc()功能,但它不接受auto

1 个答案:

答案 0 :(得分:1)

你可以在你的风格中使用这个%

<img src="yourimage.jpg" style ="width:300%; height:300%">

<img src="yourimage.jpg" alt="Smiley face" height="300%" width="300%">

或者您可以使用此

<img src="yourimage.jpg" alt="Smiley face" class="image-class">    

<style>
    .image-class {

      transform:scale(3,3);
    }
</style>