Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Reset Style Sheet with Twitter Bootstrap

In my website I use twitter bootstrap. Is it necessary to include reset.css with my site? Is it included in bootstrap.css file?

like image 546
Sachindra Avatar asked Mar 24 '12 16:03

Sachindra


3 Answers

normalize.css is included at the beginning of the bootstrap.css file, so you don't need to have another one.

like image 84
Andres Ilich Avatar answered Nov 20 '22 21:11

Andres Ilich


With Bootstrap 2, the old reset block has been dropped in favor of Normalize.css, that also powers the HTML5 Boilerplate. Normalize.css makes browsers render all elements more consistently and in line with modern standards and it precisely targets only the styles that need normalizing.

like image 24
Sachindra Avatar answered Nov 20 '22 19:11

Sachindra


Just a note to this. Twitter Bootstrap 2.0 runs Normalize.css, instead of reset. (but they have kept the name as reset.css for some odd reason :D )

like image 5
Mackelito Avatar answered Nov 20 '22 20:11

Mackelito