Is there any reason related to parsing time, layout, rendering time, style app, etc. to have HTML attributes in a specific (or sequential) order?
The order of HTML attributes does not significantly improve page compressibility , and maintaining some order can make markup easier for readers to understand (for example, put id first, starting <input> with type , putting logical attributes at the end of an open tag), but I would like to know are there any reasons for evaluating the order of the attributes.
source share