Bootstrap 3 offset on right not left

Bootstrap rows always contain their floats and create new lines. You don’t need to worry about filling blank columns, just make sure they don’t add up to more than 12. <link rel=”stylesheet” href=”https://maxcdn.bootstrapcdn.com/bootstrap/3.2.0/css/bootstrap.min.css”> <div class=”container”> <div class=”row”> <div class=”col-xs-3 col-xs-offset-9″> I’m a right column of 3 </div> </div> <div class=”row”> <div class=”col-xs-3″> I’m a left … Read more

what are the .map files used for in Bootstrap 3.x?

From Working with CSS preprocessors in Chrome DevTools: Many developers generate CSS style sheets using a CSS preprocessor, such as Sass, Less, or Stylus. Because the CSS files are generated, editing the CSS files directly is not as helpful. For preprocessors that support CSS source maps, DevTools lets you live-edit your preprocessor source files in … Read more