样式层次

作者: onweer | 来源:发表于2016-03-11 18:38 被阅读61次

    由高到低 :

    1. 缺省样式(浏览器内置样式) ->
    2. 内敛样式 (style 属性) ->
    3. 嵌入页面样式
    <head> 
        <style type="text/css">
              p{
                     font-size : 22px;
              }
       </style>
     </head>
    
    

    5. 外联CSS样式

    <link rel="stylesheet" href="路径">
    

    6. 导入样式

    @import url(CSS/filename.css);
    有些问题,让css文件不能并行下载,不推荐使用
    

    相关文章

      网友评论

        本文标题:样式层次

        本文链接:https://www.haomeiwen.com/subject/gxatlttx.html