Prevent Text Wrap On a Page
Was having some text wrapping going on in a column that really did not need it in a Bootstrap grid. It would only happen right before the site switched to the mobile view. Rather than mess with the grids any further I added the following class to that single element.
.nowrap{
white-space: nowrap;
}
ref: http://stackoverflow.com/questions/300220/how-to-prevent-text-in-a-table-cell-from-wrapping
.nowrap{
white-space: nowrap;
}
ref: http://stackoverflow.com/questions/300220/how-to-prevent-text-in-a-table-cell-from-wrapping
Comments
Post a Comment