Background (CSS)

From Wiki @ Karl Jones dot com
Revision as of 05:45, 3 May 2016 by Karl Jones (Talk | contribs)

Jump to: navigation, search

In Cascading Style Sheets, the background is behind the border, padding and content, but not in the margin.

Diagram

CSS-Background.png


background-color

The 'background-color' property sets the background color of an element.

[Syntax]

background-color: <color>


Example

[style.css]

body{
  background-color: red;
}

[index.html]

<body>
<p>This is a paragraph</p>
</body>

Cssed back color.png

background-image

The 'background-image' property sets the background image of an element.

[Syntax]

background-image: <uri> | none 
  • uri

The functional notation used to designate URIs in property values is "url()":

background-image: url(images/image.png);

Note: You should also specify a background color that will be used when the image is unavailable. The background color sets the color that looks like the set background image.


Example

  • Sets the W3C logo to the background image.

[style.css]

body{
  background-image: url(images/logo.png);
}

[index.html]

<body>
<p>This is a paragraph</p>
</body>

700px

By default, the background image is spread like a tile.

background-repeat

The 'background-repeat' property specifies whether the image is repeated

[Syntax]

background-repeat: repeat | repeat-x | repeat-y | no-repeat
  • repeat: The image is repeated both horizontally and vertically.
  • repeat-x: The image is repeated horizontally only.
  • repeat-y: The image is repeated vertically only.
  • no-repeat: The image is not repeated: only one copy of the image is drawn.


Example

[style.css]

body{
  background-image: url(images/logo.png);
  background-repeat: repeat-x;
}

[index.html]

<body>
<p>This is a paragraph</p>
</body>

700px

See also 14.2 The background.


Challenge

1. Specifies the image for the background.

[style.css]

body{
  color: #333333;
  font-size: 0.9em;
  font-family: 'Helvetica Neue', Helvetica, Arial, Verdana, Geneva, sans-serif;
  background-image: url(images/bg.gif);
  background-repeat: repeat;
}

2. Sets the color and the image of the background in the main contents area.

[style.css]

#wrapper{
  width: 900px;
  margin: 0px auto;
  background-color: #ffffff;
  background-image: url(images/logo.png);
  background-repeat: no-repeat;
}

700px


See also

External links