How to include a CSS background image 🏙️

Опубликовано: 21 Сентябрь 2023
на канале: Bro Code
298,804
3.7k

#CSS #tutorial #course

CSS background image tutorial example explained

body{
background-image: url(background.jpg);
background-repeat: no-repeat;
background-position: center;
background-attachment: fixed;
background-size: cover;
}