Page 96 - TP_Pluse_V2.2_Class_7
P. 96
Let’s CatCh uP
Which property is used to align the text?
________________________________________________________________________________________
________________________________________________________________________________________
BACKGROUND PROPERTIES
The background properties are used to make changes in the background of a web page. The various
background properties and their values are given in the following table:
Property Value Description
Specifies the background colour to be
background-color Name of the colour
used on the web page
Specifies the image to be used in the
background-image URL of image
background on the web page
repeat, repeat-x, repeat-y, (whereas, Specifies the repetition of an image on
background-repeat
x- horizontal & y-vertical) no repeat the web page
Create an HTML5 web page by using the background properties.
<!DOCTYPE html>
<HTML>
<HEAD>
<STYLE>
BODY {background-image: url("D:\tile.png");
background-repeat:repeat-y;}
H1 {background-color:green;
text-align:center;}
94 Plus (Ver. 2.2)-VII

