Table of Contents

IT:AD:CSS:Bootstrap

Summary

Worth considering: * “Agree. Bootstrap is a gross violation of the principal of separation of presentation and content.”

Tools

Use Jetstrap to make it a lot easier if under time constraints.

Process

Make a Bundle

        bundles.Add(new StyleBundle("~/Content/bootstrap").Include(
            "~/Content/bootstrap.css",
            "~/Content/bootstrap-responsive.css"
            ));

And refer to it from the _Layout page:

@Scripts.Render("~/bundles/modernizr")

Then refer to docs:

Resources