Wrapping an HTML input button's text value over multiple lines
问题 How do I move text to a new line in an HTML input element with the type="button" attribute? 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's text value to be wrapped in two lines. I tried typing it into the next line in HTML. It didn't work as I expected: <input type="button" id="btnTexWrapped" value="I see this is a long sentence here." style="width: 200px;" /> I also tried using all