16 lines
247 B
CSS
16 lines
247 B
CSS
|
|
html {
|
|
height: 100%;
|
|
box-sizing: border-box;
|
|
}
|
|
|
|
body {
|
|
box-sizing: border-box;
|
|
background-image: url(/ostsee.jpg);
|
|
background-size: cover;
|
|
margin: 0;
|
|
height: 100%;
|
|
width: 100%;
|
|
top: 0;
|
|
position: absolute;
|
|
} |