Bootstrap 3 Template input label prevent wrap

This is a simple Twitter Bootstrap 3 template. You can fork it to get a ready to use Bootstrap 3 fiddle.

by Tarek Faham

HTML

<script src="//netdna.bootstrapcdn.com/bootstrap/3.0.0/js/bootstrap.min.js"></script>
<link rel="stylesheet" href="//netdna.bootstrapcdn.com/bootstrap/3.0.0/css/bootstrap.min.css">
<form class="form-horizontal">
  <div class="form-group">
    <label for="mySelect" class="col-xs-2 control-label">My Label:</label>
    <div  class="col-xs-8">
      <select id="mySelect" class="form-control" >
          <option>Thing One</option>
          <option>Thing Two</option>
      </select>
    </div>
    
  </div>
  <div class="form-group">
    <input type="text" class="form-control">
  </div>  
</form>

CSS

label {
  white-space: nowrap;
}

JavaScript

/* Latest compiled and minified JavaScript included as External Resource */