html引入css的方式
?
2.内部样式表,就是把样式表放到页面的<head>区里.
?
3.导入外部样式表,用@import,在<head>与</head><style type="text/css"> <!-- @import "*.css" --> </style>
?
4.内嵌样式,就是在标签内写入style="",比如: <td style="border-left:#cccccc">设置表格左边框的颜色为灰色.
?
?