vote up 1 vote down star

Hi,

Does anybody know if there is a way to display the text value of an button in HTML on several lines ?

I mean, if you lock the width of the button in the associated CSS and you want the text on the button to be on 2 lines for example..

Thanks in advance !

flag

3 Answers

vote up 0 vote down check
<input type="button" value="line &#10; break" />
link|flag
To extend that: <input type="button" value="line &#10; break" onclick="document.FORMNAME.submit()" /> – Akoi Meexx Aug 27 at 19:59
OK ! Exactly what I was looking for ! – Clem Aug 27 at 20:00
Argh ... correction, this doesn't work when I try to use it with an asp:Button control and passing the Text value in the codebehind ... – Clem Aug 27 at 20:11
Have you tried putting a linebreak direct into the string? I'm not sure what the c# equivalent is, but in VB it would be "line " & vbCrLf & " break". – robertc Aug 27 at 21:07
Thanks a lot robertc ! Tested and approved :) The equivalent is : "line " + Environment.NewLine + " break" – Clem Aug 27 at 21:36
vote up 0 vote down

This worked for me (using Chrome, didn't test other browsers):

myButton.Text = "Click \r\n me";
link|flag
By the way, that's C#. I assumed you're using ASP.NET since you said you use it on a asp:Button control. You can do the same thing if you're using VB instead. – Mr. Smith Aug 27 at 20:45
vote up 2 vote down

You can use the <button> element, which allows for styling (and text-wrapping).

Only problem with that is that if you have multiple button elements on the same page, you will potentially run into issues with IE6 passing name/value pairs to the server incorrectly.

link|flag
Yes I used to use it but in fact the input is an asp:input element and has to stay like this. thanks ! – Clem Aug 27 at 19:59
Button styling is not very well supported, unfortunately. Good luck with it. – bigmattyh Aug 27 at 20:19

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.