006 CSS三种引入方式

CSS三种引入方式

一、三种方式的书写规范

1、行间式

<div style=" 100px; height: 100px; background-color: red"></div>

2、内联式

<head>
    <style>
        div {
             100px;
            height: 100px;
            background-color: red;
        }
    </style>
</head>

3、外联式

file: zero.css
div {
	 100px;
    height: 100px;
    background-color: red;
}
file: zero.html
<head>
    <link rel="stylesheet" type="text/css" href="css/zero.css" />
</head>

二、三种方式间的"优先级"

  • 与样式表的解析顺序有关
v_test:掌握三种CSS引入方式方式
原文地址:https://www.cnblogs.com/earon/p/9682422.html