How to make a image smaller on html | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
0

How to make a image smaller on html

12th Jul 2023, 2:01 AM
Djamel Haddouche
Djamel Haddouche - avatar
4 Answers
+ 3
Djamel Haddouche there are atleast three simple ways .... Both of the following are inline within the img tag <img src="https://unknown.png" type="png" height="140px" width="160px"> <img src="https://unknown.png" type="png" style="height:140px;width:160px;"> For just one image Or By using css img { height:140px; width:160px; } Which will make all images the same size
12th Jul 2023, 3:53 AM
BroFar
BroFar - avatar
+ 1
Just change height and width
12th Jul 2023, 3:46 AM
Sakshi
Sakshi - avatar
+ 1
use width and height as you need
12th Jul 2023, 11:04 PM
JS Nihal
JS Nihal - avatar
0
transform: scale(n) where n > 0 < 1
12th Jul 2023, 10:04 PM
White Shadow
White Shadow - avatar