I was doing a research about HTMl5 and This 2 comes out. One call Modernizr and the other one is Boilerplate. I want to know:
1.What is the different between Modernizr and Boilerplate?
2.Is it possible to run those together?
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
Modernizr is a feature detection library: it contains a range of tests you can use to determine whether a client supports various HTML5/CSS3 features. This allows you to use the standard features where available and fall back on hacks or shims when necessary.
Boilerplate is a collection of ‘best practices’: a CSS reset, some server config and so on, all with good sound defaults for HTML5 development.
You can and should use both in your HTML5 projects.