Reputation: 939
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
Reputation: 201866
Use a button
element – simpler, with more consistent results:
<button id="btnQuoteNow" class="wrapText" type="button">Quote<br>Now</button>
Upvotes: 1