Background Image – Repeat Horizontally or Vertically

By default, the background-image property repeats an image both horizontally and vertically.

Some images should be repeated only horizontally or vertically, or they will look strange, like this:

 

body
{
background-image:url('gradient2.png');
}
 
body
{
background-image:url('gradient2.png');
background-repeat:repeat-x;
}

 

Posted in Uncategorized | Leave a comment

Background Color

The background-color property specifies the background color of an element.

The background color of a page is defined in the body selector:

body {background-color:#b0c4de;}

With CSS, a color is most often specified by:

  • a HEX value – like “#ff0000″
  • an RGB value – like “rgb(255,0,0)”
  • a color name – like “red”

Look at CSS Color Values for a complete list of possible color values.

In the example below, the h1, p, and div elements have different background colors:

h1 {background-color:#6495ed;}
p {background-color:#e0ffff;}
div {background-color:#b0c4de;}

Background Image

The background-image property specifies an image to use as the background of an element.

By default, the image is repeated so it covers the entire element.

The background image for a page can be set like this:

body {background-image:url('paper.gif');}

Below is an example of a bad combination of text and background image. The text is almost not readable:

body {background-image:url('bgdesert.jpg');}
Posted in Uncategorized | Leave a comment

The class Selector

The class selector is used to specify a style for a group of elements. Unlike the id selector, the class selector is most often used on several elements.

This allows you to set a particular style for many HTML elements with the same class.

The class selector uses the HTML class attribute, and is defined with a “.”

In the example below, all HTML elements with will be center-aligned:

.center {text-align:center;}

Posted in Uncategorized | Leave a comment

The id and class Selectors

The id selector is used to specify a style for a single, unique element.

The id selector uses the id attribute of the HTML element, and is defined with a “#”.

The style rule below will be applied to the element with id=”para1″:

#para1
{
text-align:center;
color:red;
}
Posted in Uncategorized | Leave a comment