vote up 0 vote down star

Whether I can reduce the textbox width without using classes?

<input type="text" maxlength="5" style="3px"/>
flag

37% accept rate
Post your code so we can see what you already tried etc. – anddoutoi Oct 28 at 12:28
<input type="text" maxlength="5" style="3px"/> – vinothkumar Oct 28 at 12:29
Thanks...I didnt apply the width...Now its work fine <input type="text" maxlength="5" style="width:3px"/> – vinothkumar Oct 28 at 12:30
1  
So Accept the answer then. – Faruz Nov 1 at 5:51

2 Answers

vote up 2 vote down
<input type="text" style="width:50px;"/>
link|flag
I already tried it .It doesnt work – vinothkumar Oct 28 at 12:25
1  
Oh but it does. <input type="text" style="width:50px;"/> if it doesn't, maybe you have some class that overrides it. Try: <input type="text" style="width:50px!important;"/> and if not: Use FireBug or IE Developer toolbar to figure out what's causing the width to grow. – Faruz Oct 28 at 12:33
vote up 1 vote down

rows and cols are required attributes, so you should have them whether you really need them or not. They set the number of rows and number of columns respectively.

http://htmldog.com/reference/htmltags/textarea/

link|flag
Thought that was only for textareas – Faruz Oct 28 at 12:22
I asked for textbox... not textarea... – vinothkumar Oct 28 at 12:28

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.