A A A A A

Decorative Images Examples

Example 1: Background Images

screenshot of uiuc.edu - showing decorative image as background

Background image [1]: current_new.jpg
background decorative image for uiuc.edu [1]

Background image [2]: body_background.jpg
background decorative image for uiuc.edu [2]

CSS Source Code

...

body {
  margin: 0px;
  padding: 0px;
  background-color: #ECEFF3;
  background-image: url(../images/body_background.jpg);
  background-repeat: repeat-x;
  background-position: left top;
  }

...

#container {
  padding: 0px;
  width: 750px;
  margin-top: 0px;
  margin-right: auto;
  margin-bottom: 0px;
  margin-left: auto;
  background-image: url(../resources/home/background/current_new.jpg);
  background-repeat: no-repeat;
  background-position: left top;
  background-color: #FFFFFF;
  border-right-width: 1px;
  border-left-width: 1px;
  border-right-style: solid;
  border-left-style: solid;
  border-right-color: #333366;
  border-left-color: #333366;
  }

...