Wednesday, December 2, 2015

How to show ellipsis if the button label (text inside the button) is too long

Add the following style to the button:

.btn-long-label {
text-overflow: ellipsis;
overflow: hidden;
white-space: nowrap;
}

No comments:

Post a Comment