How I can resize my image | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
0

How I can resize my image

30th Mar 2017, 11:32 AM
Hussein Adam
Hussein Adam - avatar
2 Answers
+ 21
<img src=… width=… height=…>
30th Mar 2017, 11:54 AM
Valen.H. ~
Valen.H. ~ - avatar
+ 1
You can resize a <img> element by using CSS properties "height" & "width". Here is an example of inline CSS : <img src="myimage.jpg" style="height:100px;width:200px;"> If you want to keep the aspect ratio of the image, I suggest you search "max-width","max-height","min-width","min-height" CSS properties.
30th Mar 2017, 11:58 AM
Paul Kabira
Paul Kabira - avatar