How do I text wrap button text of a Button object?

I want the button text of a button to wrap, it clips by default. Any ideas? Thanks.

Hey @sfbrophy - so the default styling is overflow-x: visible; which means the text just kind of floats outside the button. If you want, you can use custom CSS (/settings/code) to change it to overflow-x: scroll; which will make the text scrollable, or overflow-x: hidden; which will clip the text. Unfortunately the only way to make the text wrap (that I can find, at least) is to expand the button vertically to give the text some more room.

1 Like