CSS background, Color, Background Image
With Css we can add background colors and images to any element on the page. We can make a background image that does not completely cover the whole or the entire page repeat vertically, horizontally or in both directions.
Background styling is possible for each html tag (body, p, div, etc.).
To format the background of HTML elements using CSS, we use the following attributes:
background-color,
background image,
background-repeat,
background-attachment,
background-position,
Background Color aplay and change
Example:
body {
background-color: red;
}
With CSS, a color can be often specified by:background-color: red;
}
a valid color name - like "red"
a HEX value - like "#ff0000"
an RGB value - like "rgb(255,0,0)"
In the example below we can use background colors to <h1>, <p>, and <div> elements.
Example:
h1 {
background-color: #ff5070;
}
div {
background-color: lightblue;
}
p {
background-color: "rgb(255,0,0);
}
background-color: #ff5070;
}
div {
background-color: lightblue;
}
p {
background-color: "rgb(255,0,0);
}
Adding a css background image
By default, the image is repeated so it covers the entire element.
Example:
body {
background-image: url("picture_one.gif");
}
To repeat the image only vertically or only horizontally we will use the following CSS code:background-image: url("picture_one.gif");
}
Example:
body {
background-image:url("o_imagine.gif");
background-repeat:repeat-x;
}
background-image:url("o_imagine.gif");
background-repeat:repeat-x;
}
Background Image - Set position and no-repeat
Example:
body {
background-image: url("imgage_one.png");
background-repeat: no-repeat;
}
Background Image CSS - Fixed position
Example:
body {
background-image: url("imgage_one.png");
background-repeat: no-repeat;
background-position: right top;
background-attachment: fixed;
}
background-image: url("imgage_one.png");
background-repeat: no-repeat;
background-position: right top;
background-attachment: fixed;
}
CSS background, background color, background Image
CSS background, Color, Background Image - css tutorial
Online Editor
This tool makes it easy to create, adjust, and experiment with custom colors for the web.
HTML Templates

Magnews2 is a modern and creative free magazine and news website template that will help you kick off your online project in style.
CSS HTML Layout

Find here examples of creative and unique website layouts.
Free CSS HTML Menu

Find here examples of creative and unique website CSS HTML menu.