CSS 2, precedence of stylesheets imported using link element

前端 未结 4 1078
滥情空心
滥情空心 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
    0 讨论(0)
  • 2021-01-13 22:56

    According to the specs, the latest one is applied.

    4. Finally, sort by order specified: if two declarations have the same weight, origin and specificity, the latter specified wins. Declarations in imported style sheets are considered to be before any declarations in the style sheet itself.

    Anyhow, would not be good practice to rely on this alone, as it makes your code hard to read and interpret. I would make sure the correct rules were applied through specificity of the selectors, no matter what stylesheet they are placed in.

    0 讨论(0)
  • 2021-01-13 23:02

    The highest precedence goes to inline styles. style rules from external stylesheets follow a simple formula (see http://www.htmldog.com/guides/cssadvanced/specificity/)

    as to the order of sheets, the rules in the last sheet would take precedence in the event of a collision (unless you use the !important flag)

    edit: better ref on specificity http://css-tricks.com/specifics-on-css-specificity/

    0 讨论(0)
  • 2021-01-13 23:03

    Last styles have priority! But you can use:

    .nameclass{
       font-size:11px !important;
    }
    
    0 讨论(0)
提交回复
热议问题