Background Tester

This page will let you test the various background properties. It works only in the latest standards-compliant browsers such as Mozilla or Internet Explorer 6 or Opera

background-repeat Tile Repeat horizontally Repeat vertically No repeat
background-position Use keywords to position background   Horizontal: Vertical:
Use percentages to position background   Horizontal: % Vertical: %
background-attachment scroll (scrolls along with document)
fixed (does not scroll with content)

Here is what the CSS for your background looks like:

<style type="text/css">
<!--
body {
   background-image: url(images/evc_background.png);
   background-repeat: repeat;
   background-position: 0% 0%;
   background-attachment: scroll;
}
-->