Just a quick one.

I’ve recently had the need to use a submit button in a web form, with no CSS styling and without using an image (the client wanted it to look like a standard form button), which had to have the value text of the button on 2 sperate lines.

Using the <br /> tag didn’t work, and neither did the use of ‘/n’. So after a bit of digging I found an ascii code which worked: &#10;

Here’s an example of the code in use:

<input type="submit" value="Submit&#10;Query" />