/* 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;
}