天天看点

导入CSS的三种方式

导入CSS的三种方式:

1.内部样式

<style type="text/css">

</style>

2.外部样式

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

3.内联样式

<div style="color:red;"></div>