Twitters Bootstrap を使用しているプロジェクトを開始したばかりで、独自のリセット ルールがあるかどうか疑問に思っていました。
通常、私は自分のサイトがより一貫性のあるクロスブラウザーに見えるように正規化スタイルシートを挿入しますが、Bootstrap ではこれが必要ですか?
Twitters Bootstrap を使用しているプロジェクトを開始したばかりで、独自のリセット ルールがあるかどうか疑問に思っていました。
通常、私は自分のサイトがより一貫性のあるクロスブラウザーに見えるように正規化スタイルシートを挿入しますが、Bootstrap ではこれが必要ですか?
Bootstrap はすでにnormalize.cssを使用しています。ソース(およびLESS ファイル)を見てください。
/*!
* 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;
}
Bootstrap v3 ではこれが明示され、バージョン番号も含まれるようになりました。
/*!
* Bootstrap v3.0.3 (http://getbootstrap.com)
* Copyright 2013 Twitter, Inc.
* Licensed under http://www.apache.org/licenses/LICENSE-2.0
*/
/*! normalize.css v2.1.3 | MIT License | git.io/normalize */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
main,
nav,
section,
summary {
display: block;
}
normalize.css は現在 v3.0.0-rc.1 であるため、CHANGELOG または diff を見て、サイトでそれらを使用するかどうかを評価することをお勧めします。