1、把CSS文档放到<head>文档中,格式如下:<style type=”text/css”>…</style>。其中<style>中的”type=”text/css””意思是<style>中的代码是定义样式表单的。
2、把CSS样式表写在HTML行中,如在定义一个<div>时,可这样写<div style=”width:150px;margin:auto;”></div>。
3、将CSS文档保存为.css文件,在<head>中定义,定义格式为:<head><link rel=stylesheet href=”style.css”>
4、<!–#include file=”/temp/css.aspx”–>,将其放到<head>中,不过css.aspx文件得包括在<style type=”text/css”>…</style>中。
 
 
 
CSS控制控件渐变:
<style type=”text/css”>
<!–
.text{
 FILTER:progid;dxp_w_picpathtransform,microsoft.gradiant (startcolorstr=’white’,endcolorstr=’red’,gradienttype=’1′);
}
–>
startcolorstr:开始色
endcolorstr:结束色
gradienttype=’1’:0是从上到下,1是从左到右。