Answers for "image display css cover"

CSS
3

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
1

css image cover

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

Browse Popular Code Answers by Language