CodeAve.com CodeAve.com - CSS - Miscellaneous
ASP
JavaScript
CSS
·Basics
·Page Display
·Text Display
·Script Writers
·Contents
·What's New?
HTML
Maps
Links
Mail List
Search
Sitemap


 


Image Watermark
CSS background images work very similar to the background command in html. When applied within the <body> tag it will the image will, by default, repeat and fill the entire page. This may seem redundant to the
background tag, however since the background tag is typically applied to each page and CSS are usually linked throughout a site, you can easily in one place, change the backgrounds to many pages. Utilizing background-repeat: no-repeat; will only display the image one time overriding the default repeat setting and background-position will keep the image in one place while and other content roll over the image making a effective watermark for many browsers.
View the Output
Text View
Print View
Mail this Link
Download the Code

<html>
<head>
<title>CodeAve.com/CSS - Image Watermark</title>
<style type="text/css">
<!--
body 

background-image:url("http://codeave.com/asp/codeave-logo.gif");
/* Defines the location of the background image (relative or absolute location) */
background-attachment:fixed;
/* Sets the image to be fixed in place and will not scroll with page content*/
background-repeat:no-repeat;
/* The background image is to display one time only */
background-position:top left; 
/* The background image will always be in the top left of the browser*/
}
-->
</style> 

</head>

<body bgcolor="#FFFFFF">
<center>
<p>Text to create vertical scroll space</p>
<p>Text to create vertical scroll space</p>
<p>Text to create vertical scroll space</p>
<p>Text to create vertical scroll space</p>
<p>Text to create vertical scroll space</p>
<p>Text to create vertical scroll space</p>
<p>Text to create vertical scroll space</p>
<p>Text to create vertical scroll space</p>
<p>Text to create vertical scroll space</p>
<p>Text to create vertical scroll space</p>
<p>Text to create vertical scroll space</p>
<p>Text to create vertical scroll space</p>
<p>Text to create vertical scroll space</p>
<p>Text to create vertical scroll space</p>
<p>Text to create vertical scroll space</p>
<p>Text to create vertical scroll space</p>
<p>Text to create vertical scroll space</p>
<p>Text to create vertical scroll space</p>
<p>Text to create vertical scroll space</p>
<p>Text to create vertical scroll space</p>
<p>Text to create vertical scroll space</p>
<p>Text to create vertical scroll space</p>
<p>Text to create vertical scroll space</p>
<p>Text to create vertical scroll space</p>
<p>Text to create vertical scroll space</p>
<p>Text to create vertical scroll space</p>
<p>Text to create vertical scroll space</p>
<p>Text to create vertical scroll space</p>
<p>Text to create vertical scroll space</p>
<p>Text to create vertical scroll space</p>
<p>Text to create vertical scroll space</p>
<p>Text to create vertical scroll space</p>
<p>Text to create vertical scroll space</p>
<p>Text to create vertical scroll space</p>
<p>Text to create vertical scroll space</p>
<p>Text to create vertical scroll space</p>
<p>Text to create vertical scroll space</p>
<p>Text to create vertical scroll space</p>
<p>Text to create vertical scroll space</p>
<p>Text to create vertical scroll space</p>
<p>Text to create vertical scroll space</p>
<p>Text to create vertical scroll space</p>
<p>Text to create vertical scroll space</p>
</center>
</body>
</html>

 

 

 



ASP: What's New? | Articles | Script Writers | Database Display | Read/Write
Server Variables | Response Objects | Random Events | Miscellaneous
HTML: Forms | Hyperlinks | Headers | Tables | Hyperlinks | Headers | Text Display
JavaScript: Document Info | Forms | Images | Navigation | Script Writers
CSS: Basics | Page Display | Text Display | Script Writers | Miscellaneous
Maps: Map Script Writers | Bing Maps | Google Maps
Privacy Statement

CodeAve.com is hosted by MyHosting.com
Donate Food Online with a Mouse Click at TheHungerSite.com
Donate Land Online with a Mouse Click at TheRainForestSite.com
© 1999 - 2010 CodeAve.com
All Rights Reserved