<div id="demo1">

The CSS:

div#demo1 {
			border: 1px solid blue;
			width: 100vw;
			height: 60vh;
			
			/* Here is the background property */
		  background: gray url(i/molly-original.jpg) no-repeat center center;
			background-size: cover;
}
		

<div id="demo2">

The CSS:

div#demo2 {
			border: 1px solid blue;
			width: 100vw;
			height: 60vh;
			
			/* Here is the background property */
		  background: gray url(i/molly-original.jpg) no-repeat center center;
			background-size: contain;
}