invariant
invariant

Reputation: 8900

list of html attributes and its allowed types

is there any list available that maps html attribute to its allowed types, similar to https://developer.mozilla.org/en-US/docs/Web/HTML/Attributes ?

Example :

wrap : Boolean

accept : String

value : Any

tabIndex : Int
...

Upvotes: 0

Views: 55

Answers (1)

v7d8dpo4
v7d8dpo4

Reputation: 1399

The list of attributes in HTML 5: https://www.w3.org/TR/html5/index.html#attributes-1

The list of attributes in HTML 4: https://www.w3.org/TR/html4/index/attributes.html

Upvotes: 3

Related Questions