<style>
*{
color: blue
font-family: '楷体'
}
</style>
color表示字体颜色, font-family表示字体样式
在样式表或者页面head加上这个就可以了.分别是字体,字号,颜色,行高,总之要什么就写什么.body,td,th
{font-family:
Verdana,
Arial,
Helvetica,
sans-seriffont-size:
12pxcolor:
#1d1007
line-height:24px}
这个是全局的,如果你要改局部,你可以自定义,比如:
.ft02
{
font-size:14px
font-weight:bold
color:#f8dcac}
.ft03
{
font-size:14px
font-weight:bold
color:#b30000}
然后在需要调用的地方用class="ft02"就可以了.