I want all submit buttons on my page to be the same lenght, any idea how to do it ???
For example:
<input type="submit" value="Submit"/>
<input type="submit" value="Welcome User"/>
I want both buttons to be equal in size.
This is not a PHP question !
<input type="submit" value="Welcome User" style="width:200px;" />
suntra wrote:This is not a PHP question ! <input type="submit" value="Welcome User" style="width:200px;" />
But this is definitely Newbie question 🙂
Thank you.
Yes but it is actually an HTML form question so study up on attributes of form elements.