- color
- background-color
- background-image
- background-repeat
- background-attachment
- background-position
- background
Foreground color: the 'color' property
Thecolor
property describes the foreground color of an element.For example, imagine that we want all headlines in a document to be dark red. The headlines are all marked with the HTML element
<h1>
. The code below sets the color of <h1>
elements to red.show example
Colors can be entered as hexadecimal values as in the example above (#ff0000), or you can use the names of the colors ("red") or rgb-values (rgb(255,0,0)).
The 'background-color' property
Thebackground-color
property describes the background color of elements.The element
<body>
contains all the content of an
HTML document. Thus, to change the background color of an entire page,
the background-color property should be applied to the <body>
element. You can also apply background colors to other elements including headlines and text. In the example below, different background colors are applied to
<body>
and <h1>
elements.show example
Notice that we applied two properties to
<h1>
by dividing them by a semicolon.Background images [background-image]
The CSS propertybackground-image
is used to insert a background image.As an example of a background image, we use the butterfly below. You can download the image so you can use it on your own computer (right click the image and choose "save image as"), or you can use another image as you see fit.
To insert the image of the butterfly as a background image for a web page, simply apply the background-image property to
<body>
and specify the location of the image.show example
NB: Notice how we specified the location of the image as url("butterfly.gif"). This means that the image is located in the same folder as the style sheet. You can also refer to images in other folders using url("../images/butterfly.gif") or even on the Internet indicating the full address of the file: url("http://www.html.net/butterfly.gif").
Repeat background image [background-repeat]
In the example above, did you notice that by default the butterfly was repeated both horizontally and vertically to cover the entire screen? The propertybackground-repeat
controls this behaviour.The table below outlines the four different values for
background-repeat
.Value | Description | Example |
---|---|---|
background-repeat: repeat-x | The image is repeated horizontally | Show example |
background-repeat: repeat-y | The image is repeated vertically | Show example |
background-repeat: repeat | The image is repeated both horizontally and vertically | Show example |
background-repeat: no-repeat | The image is not repeated | Show example |
For example, to avoid repetition of a background image the code should look like this:
show example
Lock background image [background-attachment]
The propertybackground-attachment
specifies whether a background picture is fixed or scrolls along with the containing element.A fixed background image will not move with the text when a reader is scrolling the page, whereas an unlocked background image will scroll along with the text of the web page.
The table below outlines the two different values for
background-attachment
. Click on the examples to see the difference between scroll and fixed.Value | Description | Example |
---|---|---|
Background-attachment: scroll | The image scrolls with the page - unlocked | Show example |
Background-attachment: fixed | The image is locked | Show example |
For example, the code below will fix the background image.
show example
Place background image [background-position]
By default, a background image will be positioned in the top left corner of the screen. The propertybackground-position
allows you to change this default and position the background image anywhere you like on the screen.There are numerous ways to set the values of
background-position
.
However, all of them are formatted as a set of coordinates. For
example, the value '100px 200px' positions the background image 100px
from the left side and 200px from the top of the browser window. The coordinates can be indicated as percentages of the browser window, fixed units (pixels, centimetres, etc.) or you can use the words top, bottom, center, left and right. The model below illustrates the system:
The table below gives some examples.
Value | Description | Example |
---|---|---|
background-position: 2cm 2cm | The image is positioned 2 cm from the left and 2 cm down the page | Show example |
background-position: 50% 25% | The image is centrally positioned and one fourth down the page | Show example |
background-position: top right | The image is positioned in the top-right corner of the page | Show example |
The code example below positions the background image in the bottom right corner:
show example
Compiling [background]
The propertybackground
is a short hand for all the background properties listed in this lesson.With
background
you can compress several properties and thereby write your style sheet in a shorter way which makes it easier to read. For example, look at these five lines:
Using
background
the same result can be achieved in just one line of code:The list of order is as follows:
[background-color]
| [background-image]
| [background-repeat]
| [background-attachment]
| [background-position]
If a property is left out, it will automatically be set to its default value. For example, if
background-attachment
and background-position
are taken out of the example:These two properties that are not specified would merely be set to their default values which as you know are scroll and top left.