+ 2
How can i make a image smaller with CSS?
How to make a image smaller(px) with CSS
2 Respostas
+ 4
add style='height:1em; width:1em;" as an inline inside the <img tag />
or
<style>
img { height:1em; width:1em; }
</style>
https://code.sololearn.com/WDTrFdfSufpC/?ref=app
+ 2
width : 200px;
height : auto;