Page 106 - Trackpad_ipro 4.1_Class6
P. 106
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 table:
Property Value Description
Specifies the background colour to
background-color Name of the colour
be 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,
Specifies the repetition of an image on
background-repeat (whereas, x- horizontal &
the web page.
y-vertical) no repeat
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;}
</STYLE>
</HEAD>
<BODY>
<H1>Tiles</H1>
</BODY>
</HTML>
104 iPro (Ver. 4.1)-VI

