Forum Moderators: open
<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?
You should probably stick to using:
<button type="button" name="test">Some text<br />With a break</button>
As this is far more flexible ( you can use images, html tags, etc, between the <button> tags
HTH