css: how to combine multiple stylesheets into one

后端 未结 7 687
轻奢々
轻奢々 2021-01-13 23:09

Does anyone know on how to combine multiple stylesheets into one? For example I have


<         


        
7条回答
  •  迷失自我
    2021-01-13 23:25

    Basically, you can keep them like that. As long as your stylesheets don't have elements redefined from one to another, you will have no problems. For example, if you have 2 stylesheets a.css and b.css in your htm file

    
    
    

    if in a.css you have

    a{
    text-decoration:none;
    }
    

    and in b.css

    a{
    text-decoration:underline;
    }
    

    then the second linked stylesheet will define the text-decoration attribute of a

提交回复
热议问题