faqts : Computers : Internet : Web : HTML

+ Search
Add Entry AlertManage Folder Edit Entry Add page to http://del.icio.us/
Did You Find This Entry Useful?

38 of 51 people (75%) answered Yes
Recently 6 of 10 people (60%) answered Yes

Entry

How Do I Create A Watermark Type Background??
How Do I Create A Watermark Type Background??

Mar 19th, 2001 13:26
Ben Gordon,


You can use CSS to accomplish that task but be aware that it will only 
work in IE as some of the needed properties are not supported by NS 
4.xx. Just place this code in the head section of your document. 

<style> 
body {background-image: url(http://your_image.gif); 
background-repeat: no-repeat; 
background-attachment: fixed; 
background-position: center top;} 
</style>