Css的样式

来源:互联网 发布:点云数据三维重建 编辑:程序博客网 时间:2024/06/08 03:36

 一、行内式

<h1 style=”color:red”><h1>
二、内嵌式
<style type=”text/Css”>
<!- -
 H1
{
Color
:red;
}

-- >
</style>
三、链接式
<link href=”1.css” type=”text/css” rel=”stylesheet”>
四、导入式
<style type=”text/css”>
<!- -
@inport url(1.css);
- ->
</style>
 
原创粉丝点击