使用Twitter引导规范化样式表

时间:2013-01-15 02:01:15

标签: css twitter-bootstrap normalize

我刚刚开始一个项目,我正在使用Twitters Bootstrap,并且想知道它是否有自己的重置规则。

通常我会在规范化样式表中加入,以帮助我的网站在浏览器中看起来更加一致,但这是否需要Bootstrap?

2 个答案:

答案 0 :(得分:22)

Bootstrap已使用normalize.css。请查看the source(以及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;
}

答案 1 :(得分:3)

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并评估是否要在您的网站上使用它们。