Search code examples
csscompass-sasshtml5boilerplate

Does Compass reset utility overwrite normalize.css and HTML5 boilerplate?


So I'm making a website using Middleman, which I'm trying out for the first time, and just getting my teeth into Susy and Compass, which I plan on using with it. I am not familiar with these tools and was curious if anyone knew whether the reset utilities Compass provides cascade over any of the CSS rules from HTML5 Boilerplate (mainly those from normalize.css). Does anyone know?


Solution

  • The reset included in Compass style is the Eric Meyer's one (version 2.0).

    I'm not familiar with HTML5 Boilerplate. Although I know they are a set of good practices, I've never seen myself on need of using it. I like to build my own boilerplates.

    After reading the source code of normalize.css and the Eric Meyer's reset I found you will have some colliding rules.

    I'd say that if you're interested on keeping normalize.css over the reset mixin just include normalize.css after it.