A titolo di esempio ti ho creato questa paginetta: [***]
Codice HTML:
<!DOCTYPE html>
<head>
<meta charset="utf-8">
<style>
body {
height: 100%;
margin: 0;
width: 100%;
}
#background {
background: #000 url("http://darkwolf.altervista.org/img/intro-bg.jpg") no-repeat scroll center center / cover ;
display: block;
height: 100%;
position: fixed;
width: 100%;
}
#wrapper {
background-color: #ffffff;
border: 1px solid #333333;
left: 50%;
margin-left: -480px;
min-height: 500px;
position: absolute;
width: 960px;
text-align: center;
top: 40px;
}
</style>
</head>
<body>
<a href="https://laltroweb.it/" id="background"></a>
<div id="wrapper">
<h1>pagina</h1>
<p>qui la mia pagina</p>
</div>
</body>
</html>
Saluti...