Crop images | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
+ 2

Crop images

Can u please tell how to crop images using html and give as out put

10th Feb 2019, 7:17 PM
Shining StaršŸ’„
Shining StaršŸ’„ - avatar
1 Answer
+ 2
You can use negativeĀ marginĀ to move the image around within theĀ <div/>. <div class="crop"> <img src="..." alt="..."> </div> CSS: .crop { width: 200px; height: 150px; overflow: hidden; } .crop img { width: 400px; height: 300px; margin: -75px 0 0 -100px; }
11th Feb 2019, 1:09 PM
Tejas Gupta