CSS的使用方法: 1.行内使用,如: <p style="font-style:normal;" mce_style="font-style:normal;">OOOOO100中文网</p> CSS只要合乎逻辑就能使用 2.CSS的id使用方法,如: <head> <meta http-equiv="Content-Type" content="text/html; charset=gb2312" /> <title>CSS入门基础</title> <mce:style type="text/css"><!-- #abc{ color:orange; } --></mce:style><style type="text/css" mce_bogus="1">#abc{ color:orange; }</style> </head> <body> <p id="abc">idPHP100中文网</p> </body> 注意style标签需要加在head标签中,使用的时候id=xxx 3.CSS的class使用方法与id使用方法类似,据说范围小一些,以后讲,如: <head> <meta http-equiv="Content-Type" content="text/html; charset=gb2312" /> <title>CSS入门基础</title> <mce:style type="text/css"><!-- .abc{ color:orange; } --></mce:style><style type="text/css" mce_bogus="1">.abc{ color:orange; }</style> </head> <body> <p class="abc">idPHP100中文网</p> </body> 4.CSS文件的引入和使用: 先定义如study.css,内容如下: p { color:red; font-size:50px; font-weight:bold; } 然后使用,在study.html中: (1)link方式,在head中添加: <link rel="stylesheet" type="text/css" href="study.css" mce_href="study.css"/>即可 (2)import方式,在head中添加: <mce:style type="text/css"><!-- @import "13.css" --></mce:style><style type="text/css" mce_bogus="1"> @import "13.css"</style> 据说第二种方法不太稳定,建议用第一种方法. 范围小的起作用,行内最小,然后是id,然后是class,然后是标记定义型