1
Hello, I have a page in HTML+CSS and wanted to put Two different images background, One to be displayed for PC and one for mobile, how could I do that? My css is like this currently, calling just an image (BG.png)
body{
font-family: 'Noto Sans TC', sans-serif;
height: 100vh;
background-image: url(bg.png);
background-position: center center;
background-repeat: no-repeat;
background-attachment: fixed;
background-size: cover;
background-color: #007ec7;
}
thanks, I’ll do it here, thank you very much ;)
– spooker