How to move text to newline in HTML input( type button).
I have following code:
<input type="button" id="btnTexWrapped" value="I see this is a long sentence here." style="width: 200px;" />
I want the button text to be in 2 lines(wrapped) and visible.
I tried typing it in next line in HTML. It doesnot help as I expect.
<input type="button" id="btnTexWrapped" value="I see this is a long
sentence here." style="width: 200px;" />
I also tried using all options of white-space with fixed width: 200px; Still nothing works.
I am ok with statically fixing the length breadth or other values as control is not going to change.
Any suggestions ?
<button></button>tag. – jan267 Oct 24 '12 at 11:45