View Single Post
  #4 (permalink)  
Old Oct 28th, 2007, 13:30
Stuart Stuart is offline
Highly Reputable Member
Join Date: Sep 2007
Age: 15
Posts: 717
Blog Entries: 1
Thanks: 0
Thanked 0 Times in 0 Posts
Re: How to wrap Text in a button?

If you want to write endless text without the width changing, you need to use css. Try this:
Code: Select all
.mybutton {
width: 10px;
}


<input type="button" class="mybutton" value="abc...">
If that does not work, I have another idea.
Reply With Quote