Answers for "decrease the size of an image css"

CSS
4

reduce image size css

.container {
    width: 200px;
    height: 120px;
}

/* Resize images */
.container img {
    width: 100%;
    height: auto;
}
Posted by: Guest on June-23-2021

Code answers related to "decrease the size of an image css"

Browse Popular Code Answers by Language