Date:  07/07/2006 06:52:48 AM Msg ID:  003033
From:  Larry Zhang Thread:  003033
Subject:  How to use CSS?
I created a simple CSS file. and save it as "background.css" under the same folder of my application.
 

hr {color: sienna}
p {margin-left: 260px}

body {background-image: url("images/background.gif")}

 
But I'm unable to use it when my web file has the extension of .fwx.
It works well when you link it using .html file format.
 

<head>

<link rel="stylesheet" type="text/css" href="background.css" />

</head>

 

Regards.