Image height-width to change according to image size

51 Views Asked by At

I would like to implement the media query when image size is 50x100 media query would like image height-100px width-100px, similarly if image size is 100x50 image height-90px width-90px

I know media query for screen size only. if it is possible please suggest to fix my project.

eg
@media img-src (min-width:50px ) and (max-width:100px) {
.imagediv {
    width: 100x;
    height: 100px;
} }
0

There are 0 best solutions below