Kumar Gaurav
Kumar Gaurav

Reputation: 939

Text Wrap (2 line text) is not working for <input type=“button”> in Opera

I am trying to get button text in two lines, see fiddle: http://jsfiddle.net/gaurav360/Yxqx2/

its working well in all the browsers except opera...

Thanks in advance.

Upvotes: 0

Views: 331

Answers (1)

Jukka K. Korpela
Jukka K. Korpela

Reputation: 201866

Use a button element – simpler, with more consistent results:

<button id="btnQuoteNow" class="wrapText" type="button">Quote<br>Now</button>

Upvotes: 1

Related Questions