सीएसएस के साथ एक पूर्ण-पृष्ठ पृष्ठभूमि छवि बनाने के लिए कोड निम्नलिखित है -
उदाहरण
<!DOCTYPE html>
<html>
<head>
<meta name="viewport" content="width=device-width, initial-scale=1">
<style>
body, html {
height: 100%;
margin: 0;
}
.background {
background-image: url("https://images.pexels.com/photos/1424246/pexels-photo-1424246.jpeg?
auto=compress&cs=tinysrgb&dpr=1&w=1000");
height: 100%;
background-position: center;
background-repeat: no-repeat;
background-size: cover;
}
</style>
</head>
<body>
<div class="background"></div>
</body>
</html> आउटपुट
उपरोक्त कोड निम्न आउटपुट उत्पन्न करेगा -
