Saturday, August 17, 2013

CSS bg image place

<html>
<head>
<style type="text/css">
body
{
background-image:url('people.gif');
background-repeat:no-repeat;
background-attachment:fixed;
background-position:center;
}
</style>
</head>

<body>

<h1><b>Note:</b> For this to work in Firefox and Opera, the background-attachment property must be set to "fixed".</h1>

</body>
</html>

Result


No comments: