码迷,mamicode.com
首页 > Web开发 > 详细

CSS学习

时间:2017-02-08 23:10:52      阅读:223      评论:0      收藏:0      [点我收藏+]

标签:back   nbsp   style   sheet   文件   code   学习   pre   样式表   

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学习

标签:back   nbsp   style   sheet   文件   code   学习   pre   样式表   

原文地址:http://www.cnblogs.com/quanxi/p/6031703.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!