Button With Line Breaks
You can use carriage return characters to break the line: 

<input type="button" value="Really
Tall
 Button">
You can use carriage return characters to break the line: 

<input type="button" value="Really
Tall
 Button">
In last Opera (11.51) doesn’t work.
Doesen’t work on ipad either.
Doesn’t work in Dolphin Mini Browser on Android
<button>line1<br/>line2<br/>line3</button>
better solution.
i think johndoe’s solutions is better..
It works fine when you need a
<button>, but when you want an honest to goodness button input, it’s a poor semantic replacement.The code should also work fine :
between opening and closing tags -
(input type=”submit” value=”Really
Tall
Button” / )
Write “Tall” and “Button” from the next line. Space is also counted in ” ” .
Tested and failed.
I preferred CSS Techniques “white-space: normal;” and it works fine.
This is working fine, you are FANTASTIC :)
Thanks Joel !! Css is often the best solution :)
Nice Code. :)