How to set background fixed in css


Use this code:-

<html>
<head>
<title>Fixed Background</title>
<style type="text/css">
body{
    background:url('background.jpg');
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-size: 100%;
}
</style>
</head>
<body>
</body>
</html>


Here is the output of this code:-


No comments:

Post a Comment