I know it's very basic question and hope not so important, but i want to know the answer, please don't suggest only refer links.

we all daily face <input> type tag and their attributes (type, class, id, value, name, size, maxlength, tabindex etc..), I just want to know

  • is there any specific order required for attributes in <input> tag or can we use any order?
  • if there an order then what is it?
link|improve this question

feedback

3 Answers

up vote 3 down vote accepted

You can use any sequence

link|improve this answer
feedback

The order of attributes in HTML elements doesn't matter at all. You can write the attributes in any order you like.

link|improve this answer
but what sequence should be prefer, in practical? i hope first of all type should b defined, then class and then id,value etc... – diEcho Apr 27 '10 at 11:23
1  
It's up to you - just be consistent. – Dan Diplo Apr 27 '10 at 11:26
@Dan Thank you very much – diEcho Apr 27 '10 at 11:51
feedback

my preference is: id, name, type, class, attributes (like selected, checked), value

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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