html - Is there a specific order that HTTP tag attributes should be listed in? -


should attributes of particular html tag listed in specific order? there convention order? example, have following image tag in html strict page...

<img src="http://example.com/media/graphics/border_bottom.png" class="border" height="5px" width="600px" alt="lower border" /> 

should src listed first, or height, or width, etc? proper order?

thanks in advance!

no there isn't, anyway should follow make own standard , follow it


Comments

Popular posts from this blog

List<T>().Add problem C# -

Javascript natural sort array/object and maintain index association -