内嵌式

特点:样式只作用于当前网页文件,没有真正实现结构表现分离

<style type="text/css">
    样式表位置
</style>

外链式

特点:作用范围是当前站点,谁调用谁生效,范围广,真正实现结构表现分离。(建议使用)

<link rel="stylesheet" type="text/css" href="1.css">

行内式

特点:作用范围仅限于当前标签,范围小,结构表现混在一起。(不建议使用)

<p style="width:12px;height: 30px">你好</p>
Last modification:February 9, 2018
If you think my article is useful to you, please feel free to appreciate