Whenever I visit W3.org (for example, see this https://www.w3.org/TR/2014/REC-html5-20141028/) there is a background image at top-left of the Webpage, I really love this. If you want to put this kind of image on your Webpage, you can go like the following:
<!doctpe html>
<html>
<head>
<meta charset="utf-8">
<title>CSS Style Decoded</title>
<style>
body {
background-image: url(some-image-26x381.png);
background-position: top left;
background-attachment: fixed;
background-repeat: no-repeat;
}
</style>
</head>
<body>
</body>
</html>
Additionally, you may put background image at left, right, top and bottom of your Webpage — making a border of some color.
Comments
Post a Comment