I am trying to resize an img with a percentage of itself. For example, I just want to shrink the image by half by resizing it to 50%. But applying width: 50%; w
width: 50%;
Try zoom property
zoom
Edit: Apparently, FireFox doesn't support zoom property. You should use;
-moz-transform: scale(0.5);
for FireFox.