Wrap text on a button

Wrap text on a button

Comments

  • I have some text on a button, but that text is going beyond the allotted button size. Is there any way we can wrap the text on the button?

  • To wrap the text on the button, well have to add the following content to the existing CSS, if any, or apply a new CSS with the following content.

    white-space: normal;
    word-break: break-word;

Sign In or Register to comment.