Is there a way to wrap or resize text inside a Bootstrap button without changing the button size? I have multiple buttons that need to be aligned properly.
I tried using this class, and while the text wraps, the button grows in size, causing alignment issues with other buttons.
.btn-wrap-text {
white-space: normal !important;
word-wrap: break-word !important;
}
Here is some sample code you can use to test and resize the view: https://jsfiddle.net/mrapi/3yv314dx/1/
Thank you!