Answers for "how to size an image in css with container"

1

how to contain an image within a div

.cover img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    overflow: hidden;
}
Posted by: Guest on December-21-2021
0

image to fill container size

background-size: 1000px 300px;
  backdrop-filter: blur(5px);
  background-position: center;
  background-repeat: no-repeat;
Posted by: Guest on October-01-2021

Code answers related to "how to size an image in css with container"

Browse Popular Code Answers by Language