CSS 2, precedence of stylesheets imported using link element

前端 未结 4 1084
滥情空心
滥情空心 2021-01-13 22:26

Given



<         


        
4条回答
  •  天涯浪人
    2021-01-13 22:48

    The stylesheets are downloaded and applied in the order they are linked, i.e:

    • t.cake.css
    • f.css // Will override conflicting rules of the stylesheet above
    • t.generic.css // Will override conflicting rules of the twostylesheets above
    • t.head.css // Will override conflicting rules of the three stylesheets above

提交回复
热议问题