Creating watermark using html and css

demonoid picture demonoid · Jan 30, 2014 · Viewed 147k times · Source

What I need is to create cross website transparent watermark like this using only html and css. Have no idea how to keep that always in one place for ex: right bottom side of browser window.

Thanks in advance

enter image description here

Answer

ElendilTheTall picture ElendilTheTall · Jan 30, 2014
#watermark
{
 position:fixed;
 bottom:5px;
 right:5px;
 opacity:0.5;
 z-index:99;
 color:white;
}

jSFiddle