Notes from the MVA video tutorial course "Building Responsive UI with Bootstrap"
The Microsoft Virtual Academy course Building Responsive UI with Bootstrap covers the framework from the perspective of a ASP.NET MVC developer. Summary of points: + The Bootstrap framework simplifies building web pages with a responsive layout (by scaling for differing device resolutions and sizes. + A big part of Bootstrap functionality involves controlling features through HTML class names & CSS + Bootstrap works on a grid system. The grid has 12 columns + The Bootstrap 3 grid system has four tiers of classes: xs (phones), sm (tablets), md (desktops), and lg (larger desktops). You can use nearly any combination of these classes to create more dynamic and flexible layouts. Each tier of classes scales up, meaning if you plan on setting the same widths for xs and sm, you only need to specify xs. + Any library used in conjunction Bootstrap may break it if it has classes similar to those used by Bootstrap. A workaround is to prefix an unique alphabet char...