Saturday, August 17, 2013

CSS bg image no repeat

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

<body>

<h1>no-repeat will not repeat a background image. The image will only be shown once.</h1>

</body>
</html>

Result


No comments: