Slide 7 of 27

Background Image

Values: <url> | none

The background of this text is an image

Example code:

<style type="text/css">
.mystyle1 {
background-image: url(bg.gif);
color: black;
width: 20em;
padding: 1em;
margin: 1em;
border: 3px solid black;
text-align: center;
font-weight: bold;
font-size: x-large }
</style>
.....
<div class="mystyle1">The background of this text is an image</div>
....