Answers for "html image scale to fit"

0

css image size scale to fit

.image {
	width: 100%;
    height: 100%;
}
Posted by: Guest on May-09-2022
0

html image scale to fit

.fill {object-fit: fill;}
.contain {object-fit: contain;}
.cover {object-fit: cover;}
.scale-down {object-fit: scale-down;}
.none {object-fit: none;}
Posted by: Guest on May-06-2022

Code answers related to "html image scale to fit"

Browse Popular Code Answers by Language