In my application I have my grid column classes specified like this:
<div class="row">
<div class="form-group">
@Html.HiddenFor(m => m.Team.TeamId)
@Html.Label("Add Player: ", new { @class = "col-xs-12 col-sm-4 col-md-3 control-label" })
<div class="col-xs-6 col-sm-4 col-md-3">
@Html.DropDownListFor(m => m.AddNewPlayerId, new SelectList(Model.AllPlayers, "PlayerId", "DisplayName"), new { @class = "form-control" })
</div>
<div class="col-xs-6 col-sm-4 col-md-3">
@Html.DropDownListFor(m => m.TeamMemberTypeId, new SelectList(Model.TeamMemberTypes, "TeamMemberTypeId", "Name"), new { @class = "form-control" })
</div>
<div class="col-xs-12 col-sm-4 col-md-3">
<input type="submit" value="Add Team Member" class="btn btn-primary" />
</div>
<div class="col-xs-12 col-sm-3 col-md-2">
<a href="/Player/AddNewPlayer" class="btn btn-primary">Create New Player</a>
</div>
</div>
</div>
As you can see, I've got them setup as
col-xs-12, col-sm-4, ...
or
col-xs-6, col-sm-4, ...
My problem is, according to the Bootstrap 3 specs, it should break from xs to sm at 480px, but mine isn't breaking until either 751 or 752px. Where do I go o find out if my breakpoints didn't get changed somehow, or how to find out why they are breaking at the incorrect dimensions?