Answers for "html image overflow"

CSS
2

css image overflow

.image-holder{
  width: 500px;
  height: 500px;
  overflow: hidden;
}
.image-holder img{
  width: 100%;
  height: 100%;
}
Posted by: Guest on June-17-2021
3

how to crop images in css

img{
	object-fit: cover;
}
Posted by: Guest on December-23-2020

Browse Popular Code Answers by Language