Is there a shortcut for setting !important on every property in a CSS file?

后端 未结 4 506
情歌与酒
情歌与酒 2021-01-14 00:00

I have a large CSS file for which I would like to add !important to every CSS property. Is there one-line shortcut to make a whole .css file !important

4条回答
  •  甜味超标
    2021-01-14 00:30

    If your goal is to override styles by importing another stylesheet, you should use the order of precedence.

    
        Title
        
        
    
    

    Here the style.css is the original and style-override.css would contain your new custom css. These styles will override the styles from style.css. This means you won't need to use !important because the style is overwritten.

    Alternatively you could add in a CSS reset to remove all styles and build on-top of that.

    
        Title
        
        
        
    
    

    Check out a CSS reset at http://meyerweb.com/eric/tools/css/reset/ and add it to reset.css.

提交回复
热议问题