spences10
12/22/2016 - 10:51 PM

From http://stackoverflow.com/questions/19284153/how-to-get-a-responsive-button-in-bootstrap-3

/* In Bootstrap, the .btn class has a white-space: nowrap; property, 
making it so that the button text won't wrap. So, after setting 
that to normal, and giving the button a width, the text should 
wrap to the next line if the text would exceed the set width.*/

<div class="col-sm-2" >
    <a id="new-board-btn" class="btn btn-success" >Create New Board</a>
</div>

#new-board-btn {
    white-space: normal;
}