Search code examples
csstwitter-bootstrapnormalize

Normalize stylesheet with Twitter bootstrap


I'm just starting a project which I'm using Twitters Bootstrap for and was wondering if it has its own reset rules.

Normally I plonk in a normalize stylesheet to help my sites look more consistent cross browser but is this required with Bootstrap?


Solution

  • Bootstrap already uses normalize.css. Take a look at the source (and the LESS file):

    /*!
     * Bootstrap v2.2.2
     *
     * Copyright 2012 Twitter, Inc
     * Licensed under the Apache License v2.0
     * http://www.apache.org/licenses/LICENSE-2.0
     *
     * Designed and built with all the love in the world @twitter by @mdo and @fat.
     */
    
    article,
    aside,
    details,
    figcaption,
    figure,
    footer,
    header,
    hgroup,
    nav,
    section {
      display: block;
    }