Return to Snippet

Revision: 65876
at February 3, 2014 20:41 by apphp-snippets


Initial Code
<!-- First way -->
<input type="button" value="This is&#x00A;a Really&#x00A;Tall&#x00A; Button">
<!-- Second way -->
<button>This is<br/>a Really<br/>Tall<br/>Button</button>

Initial URL
http://www.apphp.com/index.php?snippet=html-button-with-line-breaks

Initial Description
To get button with line breaks you can use carriage return characters to break the line: &#x00A; or just <br> with a <button> tag:

Initial Title
Button With Line Breaks in HTML

Initial Tags
button, line

Initial Language
HTML