Control background image with CSSTag(s): HTML/CSS
NOTE: You place this code in the HEAD section of your page.
<STYLE> 
  body 
  { 
      background-image: 
      url(../images/backg.gif) 
  } 
</STYLE><STYLE> 
    body 
    { 
      background-image: 
      url(../images/backg.gif); 
      background-repeat: repeat-x
    } 
</STYLE> <STYLE> 
    body 
    { 
        background-image: 
        url(../images/backg.gif); 
        background-repeat: no-repeat; 
        background-position: center center 
    } 
</STYLE><STYLE> 
    body 
    { 
        background-image: 
        url(../images/backg.gif); 
        background-repeat: no-repeat; 
        background-position: top center; 
        background-attachment: fixed 
    } 
</STYLE>
  mail_outline
Send comment, question or suggestion to howto@rgagnon.com
Send comment, question or suggestion to howto@rgagnon.com
