<head>
	<meta charset="UTF-8">
	<meta http-equiv="X-UA-Compatible" content="IE=edge">
	<meta name="viewport" content="width=device-width, initial-scale=1.0">
	<title>Document</title>
</head>

<body>
	<section class="bg-image">
	</section>
</body>
* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

.bg-image {
	height: 100vh;
	background-image: url("https://images.pexels.com/photos/5514709/pexels-photo-5514709.jpeg");
	background-repeat: no-repeat;
	background-size: 400px;
	background-position: top center;
	background-attachment: scroll;
	background-origin: padding-box;
	background-clip: content-box;
}
Run Pen

External CSS

This Pen doesn't use any external CSS resources.

External JavaScript

This Pen doesn't use any external JavaScript resources.