2017-07-17 130 views

回答

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>