Answers for "img as cover css"

CSS
2

is there an img cover

body {
  margin: 0;
}
img {
  display: block;
  width: 100vw;
  height: 100vh;
  object-fit: cover;
}
Posted by: Guest on February-26-2020
3

css image cover

object-fit: contain;
Posted by: Guest on December-18-2020

Browse Popular Code Answers by Language