[answered]how to put multiple lines on a submit button
Moderator: General Moderators
[answered]how to put multiple lines on a submit button
is it possible to have a button with multiple lines?
Last edited by adixtopix on Tue Jun 28, 2005 12:51 pm, edited 1 time in total.
- Chris Corbyn
- Breakbeat Nuttzer
- Posts: 13098
- Joined: Wed Mar 24, 2004 7:57 am
- Location: Melbourne, Australia
Untested
Code: Select all
<input type="e;submit"e; name="e;submit"e; value="e;Submit\r\nNew Line"e; />Tested
Works in Firefox and IE. Not in Opera.
Code: Select all
<input type="e;submit"e; name="e;submit"e; value="e;Submit
New Line"e; />using <button> you can inject regular html (even images etc).
Code: Select all
<button>
test blah bling<br>
bling bling bling
</button>