Answers for "css display image full width"

CSS
5

how to cover full image in css

body {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
Posted by: Guest on March-03-2020
0

full width image on screen

// ADD THIS TO CLASS OF IMAGE
	margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
Posted by: Guest on April-11-2022

Browse Popular Code Answers by Language