Button With Line Breaks in HTML
To get button with line breaks you can use carriage return characters
to break the line:
[View All Snippets]


or just <br> with a
<button> tag:
[View All Snippets]
Show Plain Text »
- <!-- First way -->
- <input type="button" value="This is
a Really
Tall
 Button">
- <!-- Second way -->
- <button>This is<br/>a Really<br/>Tall<br/>Button</button>
Live Demo: