首页 > 代码库 > CSS学习

CSS学习

CSS样式表的三种引入方式:

1、外部样式表——即将CSS样式写在单独的一个.css文件中:

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

2、内部样式表:

<style type="text/css">
    h1{
        color: red
    }
</style>

3、内联样式表:

<h1 style="color: gold">标题</h1>

 

CSS学习