Question : Adding a Line Break and Center Text in a Submit Button

I have the code below which seems to add a line break in the submit button, but the text is not centered.

Is this the best way to add a line break in a submit button and how to get the text to be centered?
 
Submit button with two lines, not centered
321423
 
1:
2:
<input type="submit" value="Click Here if You Wish to Receive 
			a Call from ACME INC" name="submit" style="padding:3px; border: solid 1px 000; text-align:center" />

Answer : Adding a Line Break and Center Text in a Submit Button

The button tag probably is best for this:


<button type="submit" name="submit" style="padding:3px; border: solid 1px 000; text-align:center">"Click Here if You Wish <br /> to Receive a Call from ACME INC" <button>
Random Solutions  
 
programming4us programming4us