snipplets.dev/code/CSS/back-image-cover.css

9 lines
177 B
CSS
Raw Normal View History

2021-12-30 20:02:32 +03:00
body{
2023-06-03 23:49:12 +03:00
margin: 0px;
height: 100vh;
background-image: url('../img/landing.jpg');
background-size: cover;
background-position: center center;
background-repeat: no-repeat;
2021-12-30 20:02:32 +03:00
}