|
I want to use the following form with a button:
<form>
<input type="button" class="button" value="Cadillac Mountain Road" onclick="location.href='submit.html'" onfocus="this.blur()" />
</form>
However, I want the value to display
Cadillac
Mountain Road
not
Cadillac Mountain Road
How can I code the 'value' attribute to cause a line break?
|