attrlist.html 71 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598
  1. <tbody>
  2. <tr>
  3. <td>
  4. <code><a href="/en-US/docs/Web/HTML/Attributes/accept">accept</a></code>
  5. </td>
  6. <td>
  7. <a href="/en-US/docs/Web/HTML/Element/form"><code>&lt;form&gt;</code></a
  8. >,
  9. <a href="/en-US/docs/Web/HTML/Element/input"
  10. ><code>&lt;input&gt;</code></a
  11. >
  12. </td>
  13. <td>List of types the server accepts, typically a file type.</td>
  14. </tr>
  15. <tr>
  16. <td>
  17. <code
  18. ><a href="/en-US/docs/Web/HTML/Element/form#attr-accept-charset"
  19. >accept-charset</a
  20. ></code
  21. >
  22. </td>
  23. <td>
  24. <a href="/en-US/docs/Web/HTML/Element/form"><code>&lt;form&gt;</code></a>
  25. </td>
  26. <td>List of supported charsets.</td>
  27. </tr>
  28. <tr>
  29. <td>
  30. <code
  31. ><a href="/en-US/docs/Web/HTML/Global_attributes/accesskey"
  32. >accesskey</a
  33. ></code
  34. >
  35. </td>
  36. <td>
  37. <a href="/en-US/docs/Web/HTML/Global_attributes">Global attribute</a>
  38. </td>
  39. <td>Keyboard shortcut to activate or add focus to the element.</td>
  40. </tr>
  41. <tr>
  42. <td>
  43. <code
  44. ><a
  45. href="/en-US/docs/Web/HTML/Attributes/action"
  46. class="page-not-created"
  47. title="This is a link to an unwritten page"
  48. >action</a
  49. ></code
  50. >
  51. </td>
  52. <td>
  53. <a href="/en-US/docs/Web/HTML/Element/form"><code>&lt;form&gt;</code></a>
  54. </td>
  55. <td>
  56. The URI of a program that processes the information submitted via the
  57. form.
  58. </td>
  59. </tr>
  60. <tr>
  61. <td>
  62. <code
  63. ><a
  64. href="/en-US/docs/Web/HTML/Attributes/align"
  65. class="page-not-created"
  66. title="This is a link to an unwritten page"
  67. >align</a
  68. ></code
  69. >
  70. </td>
  71. <td>
  72. <a href="/en-US/docs/Web/HTML/Element/applet"
  73. ><code>&lt;applet&gt;</code></a
  74. >,
  75. <a href="/en-US/docs/Web/HTML/Element/caption"
  76. ><code>&lt;caption&gt;</code></a
  77. >, <a href="/en-US/docs/Web/HTML/Element/col"><code>&lt;col&gt;</code></a
  78. >,
  79. <a href="/en-US/docs/Web/HTML/Element/colgroup"
  80. ><code>&lt;colgroup&gt;</code></a
  81. >, <a href="/en-US/docs/Web/HTML/Element/hr"><code>&lt;hr&gt;</code></a
  82. >,
  83. <a href="/en-US/docs/Web/HTML/Element/iframe"
  84. ><code>&lt;iframe&gt;</code></a
  85. >, <a href="/en-US/docs/Web/HTML/Element/img"><code>&lt;img&gt;</code></a
  86. >,
  87. <a href="/en-US/docs/Web/HTML/Element/table"><code>&lt;table&gt;</code></a
  88. >,
  89. <a href="/en-US/docs/Web/HTML/Element/tbody"><code>&lt;tbody&gt;</code></a
  90. >, <a href="/en-US/docs/Web/HTML/Element/td"><code>&lt;td&gt;</code></a
  91. >,
  92. <a href="/en-US/docs/Web/HTML/Element/tfoot"
  93. ><code>&lt;tfoot&gt;</code></a
  94. >
  95. , <a href="/en-US/docs/Web/HTML/Element/th"><code>&lt;th&gt;</code></a
  96. >,
  97. <a href="/en-US/docs/Web/HTML/Element/thead"><code>&lt;thead&gt;</code></a
  98. >, <a href="/en-US/docs/Web/HTML/Element/tr"><code>&lt;tr&gt;</code></a>
  99. </td>
  100. <td>Specifies the horizontal alignment of the element.</td>
  101. </tr>
  102. <tr>
  103. <td>
  104. <code
  105. ><a href="/en-US/docs/Web/HTML/Element/iframe#attr-allow"
  106. >allow</a
  107. ></code
  108. >
  109. </td>
  110. <td>
  111. <a href="/en-US/docs/Web/HTML/Element/iframe"
  112. ><code>&lt;iframe&gt;</code></a
  113. >
  114. </td>
  115. <td>Specifies a feature-policy for the iframe.</td>
  116. </tr>
  117. <tr>
  118. <td>
  119. <code
  120. ><a
  121. href="/en-US/docs/Web/HTML/Attributes/alt"
  122. class="page-not-created"
  123. title="This is a link to an unwritten page"
  124. >alt</a
  125. ></code
  126. >
  127. </td>
  128. <td>
  129. <a href="/en-US/docs/Web/HTML/Element/applet"
  130. ><code>&lt;applet&gt;</code></a
  131. >,
  132. <a href="/en-US/docs/Web/HTML/Element/area"><code>&lt;area&gt;</code></a
  133. >, <a href="/en-US/docs/Web/HTML/Element/img"><code>&lt;img&gt;</code></a
  134. >,
  135. <a href="/en-US/docs/Web/HTML/Element/input"
  136. ><code>&lt;input&gt;</code></a
  137. >
  138. </td>
  139. <td>Alternative text in case an image can't be displayed.</td>
  140. </tr>
  141. <tr>
  142. <td>
  143. <code
  144. ><a href="/en-US/docs/Web/HTML/Element/script#attr-async"
  145. >async</a
  146. ></code
  147. >
  148. </td>
  149. <td>
  150. <a href="/en-US/docs/Web/HTML/Element/script"
  151. ><code>&lt;script&gt;</code></a
  152. >
  153. </td>
  154. <td>Executes the script asynchronously.</td>
  155. </tr>
  156. <tr>
  157. <td>
  158. <code
  159. ><a href="/en-US/docs/Web/HTML/Global_attributes/autocapitalize"
  160. >autocapitalize</a
  161. ></code
  162. >
  163. </td>
  164. <td>
  165. <a href="/en-US/docs/Web/HTML/Global_attributes">Global attribute</a>
  166. </td>
  167. <td>
  168. Sets whether input is automatically capitalized when entered by user
  169. </td>
  170. </tr>
  171. <tr>
  172. <td>
  173. <code
  174. ><a href="/en-US/docs/Web/HTML/Attributes/autocomplete"
  175. >autocomplete</a
  176. ></code
  177. >
  178. </td>
  179. <td>
  180. <a href="/en-US/docs/Web/HTML/Element/form"><code>&lt;form&gt;</code></a
  181. >,
  182. <a href="/en-US/docs/Web/HTML/Element/input"><code>&lt;input&gt;</code></a
  183. >,
  184. <a href="/en-US/docs/Web/HTML/Element/select"
  185. ><code>&lt;select&gt;</code></a
  186. >,
  187. <a href="/en-US/docs/Web/HTML/Element/textarea"
  188. ><code>&lt;textarea&gt;</code></a
  189. >
  190. </td>
  191. <td>
  192. Indicates whether controls in this form can by default have their values
  193. automatically completed by the browser.
  194. </td>
  195. </tr>
  196. <tr>
  197. <td id="attr-autofocus">
  198. <code
  199. ><a
  200. href="/en-US/docs/Web/HTML/Attributes/autofocus"
  201. class="page-not-created"
  202. title="This is a link to an unwritten page"
  203. >autofocus</a
  204. ></code
  205. >
  206. </td>
  207. <td>
  208. <a href="/en-US/docs/Web/HTML/Element/button"
  209. ><code>&lt;button&gt;</code></a
  210. >,
  211. <a href="/en-US/docs/Web/HTML/Element/input"><code>&lt;input&gt;</code></a
  212. >,
  213. <a href="/en-US/docs/Web/HTML/Element/keygen"
  214. ><code>&lt;keygen&gt;</code></a
  215. >,
  216. <a href="/en-US/docs/Web/HTML/Element/select"
  217. ><code>&lt;select&gt;</code></a
  218. >,
  219. <a href="/en-US/docs/Web/HTML/Element/textarea"
  220. ><code>&lt;textarea&gt;</code></a
  221. >
  222. </td>
  223. <td>The element should be automatically focused after the page loaded.</td>
  224. </tr>
  225. <tr>
  226. <td>
  227. <code
  228. ><a
  229. href="/en-US/docs/Web/HTML/Attributes/autoplay"
  230. class="page-not-created"
  231. title="This is a link to an unwritten page"
  232. >autoplay</a
  233. ></code
  234. >
  235. </td>
  236. <td>
  237. <a href="/en-US/docs/Web/HTML/Element/audio"><code>&lt;audio&gt;</code></a
  238. >,
  239. <a href="/en-US/docs/Web/HTML/Element/video"
  240. ><code>&lt;video&gt;</code></a
  241. >
  242. </td>
  243. <td>The audio or video should play as soon as possible.</td>
  244. </tr>
  245. <tr>
  246. <td><code>background</code></td>
  247. <td>
  248. <a href="/en-US/docs/Web/HTML/Element/body"><code>&lt;body&gt;</code></a
  249. >,
  250. <a href="/en-US/docs/Web/HTML/Element/table"><code>&lt;table&gt;</code></a
  251. >, <a href="/en-US/docs/Web/HTML/Element/td"><code>&lt;td&gt;</code></a
  252. >, <a href="/en-US/docs/Web/HTML/Element/th"><code>&lt;th&gt;</code></a>
  253. </td>
  254. <td>
  255. Specifies the URL of an image file.
  256. <div class="note notecard">
  257. <strong>Note:</strong> Although browsers and email clients may still
  258. support this attribute, it is obsolete. Use CSS
  259. <a href="/en-US/docs/Web/CSS/background-image"
  260. ><code>background-image</code></a
  261. >
  262. instead.
  263. </div>
  264. </td>
  265. </tr>
  266. <tr>
  267. <td><code>bgcolor</code></td>
  268. <td>
  269. <a href="/en-US/docs/Web/HTML/Element/body"><code>&lt;body&gt;</code></a
  270. >, <a href="/en-US/docs/Web/HTML/Element/col"><code>&lt;col&gt;</code></a
  271. >,
  272. <a href="/en-US/docs/Web/HTML/Element/colgroup"
  273. ><code>&lt;colgroup&gt;</code></a
  274. >,
  275. <a href="/en-US/docs/Web/HTML/Element/marquee"
  276. ><code>&lt;marquee&gt;</code></a
  277. >,
  278. <a href="/en-US/docs/Web/HTML/Element/table"><code>&lt;table&gt;</code></a
  279. >,
  280. <a href="/en-US/docs/Web/HTML/Element/tbody"><code>&lt;tbody&gt;</code></a
  281. >,
  282. <a href="/en-US/docs/Web/HTML/Element/tfoot"><code>&lt;tfoot&gt;</code></a
  283. >, <a href="/en-US/docs/Web/HTML/Element/td"><code>&lt;td&gt;</code></a
  284. >, <a href="/en-US/docs/Web/HTML/Element/th"><code>&lt;th&gt;</code></a
  285. >, <a href="/en-US/docs/Web/HTML/Element/tr"><code>&lt;tr&gt;</code></a>
  286. </td>
  287. <td>
  288. <p>Background color of the element.</p>
  289. <div class="note notecard">
  290. <p>
  291. <strong>Note:</strong> This is a legacy attribute. Please use the CSS
  292. <a href="/en-US/docs/Web/CSS/background-color"
  293. ><code>background-color</code></a
  294. >
  295. property instead.
  296. </p>
  297. </div>
  298. </td>
  299. </tr>
  300. <tr>
  301. <td><code>border</code></td>
  302. <td>
  303. <a href="/en-US/docs/Web/HTML/Element/img"><code>&lt;img&gt;</code></a
  304. >,
  305. <a href="/en-US/docs/Web/HTML/Element/object"
  306. ><code>&lt;object&gt;</code></a
  307. >,
  308. <a href="/en-US/docs/Web/HTML/Element/table"
  309. ><code>&lt;table&gt;</code></a
  310. >
  311. </td>
  312. <td>
  313. <p>The border width.</p>
  314. <div class="note notecard">
  315. <p>
  316. <strong>Note:</strong> This is a legacy attribute. Please use the CSS
  317. <a href="/en-US/docs/Web/CSS/border"><code>border</code></a> property
  318. instead.
  319. </p>
  320. </div>
  321. </td>
  322. </tr>
  323. <tr>
  324. <td>
  325. <code
  326. ><a
  327. href="/en-US/docs/Web/HTML/Attributes/buffered"
  328. class="page-not-created"
  329. title="This is a link to an unwritten page"
  330. >buffered</a
  331. ></code
  332. >
  333. </td>
  334. <td>
  335. <a href="/en-US/docs/Web/HTML/Element/audio"><code>&lt;audio&gt;</code></a
  336. >,
  337. <a href="/en-US/docs/Web/HTML/Element/video"
  338. ><code>&lt;video&gt;</code></a
  339. >
  340. </td>
  341. <td>Contains the time range of already buffered media.</td>
  342. </tr>
  343. <tr>
  344. <td>
  345. <code><a href="/en-US/docs/Web/HTML/Attributes/capture">capture</a></code>
  346. </td>
  347. <td>
  348. <a href="/en-US/docs/Web/HTML/Element/input"
  349. ><code>&lt;input&gt;</code></a
  350. >
  351. </td>
  352. <td>
  353. From the
  354. <a
  355. href="https://w3c.github.io/html-media-capture/#the-capture-attribute"
  356. hreflang="en"
  357. lang="en"
  358. class="external"
  359. rel=" noopener"
  360. >HTML Media Capture<br /><small lang="en-US"
  361. >The definition of 'media capture' in that specification.</small
  362. ></a
  363. >spec, specifies a new file can be captured.
  364. </td>
  365. </tr>
  366. <tr>
  367. <td>
  368. <code
  369. ><a href="/en-US/docs/Web/HTML/Element/keygen#attr-challenge"
  370. >challenge</a
  371. ></code
  372. >
  373. </td>
  374. <td>
  375. <a href="/en-US/docs/Web/HTML/Element/keygen"
  376. ><code>&lt;keygen&gt;</code></a
  377. >
  378. </td>
  379. <td>A challenge string that is submitted along with the public key.</td>
  380. </tr>
  381. <tr>
  382. <td>
  383. <code
  384. ><a
  385. href="/en-US/docs/Web/HTML/Attributes/charset"
  386. class="page-not-created"
  387. title="This is a link to an unwritten page"
  388. >charset</a
  389. ></code
  390. >
  391. </td>
  392. <td>
  393. <a href="/en-US/docs/Web/HTML/Element/meta"><code>&lt;meta&gt;</code></a
  394. >,
  395. <a href="/en-US/docs/Web/HTML/Element/script"
  396. ><code>&lt;script&gt;</code></a
  397. >
  398. </td>
  399. <td>Declares the character encoding of the page or script.</td>
  400. </tr>
  401. <tr>
  402. <td>
  403. <code
  404. ><a
  405. href="/en-US/docs/Web/HTML/Attributes/checked"
  406. class="page-not-created"
  407. title="This is a link to an unwritten page"
  408. >checked</a
  409. ></code
  410. >
  411. </td>
  412. <td>
  413. <a
  414. href="/en-US/docs/Web/HTML/Element/command"
  415. class="page-not-created"
  416. title="This is a link to an unwritten page"
  417. ><code>&lt;command&gt;</code></a
  418. >,
  419. <a href="/en-US/docs/Web/HTML/Element/input"
  420. ><code>&lt;input&gt;</code></a
  421. >
  422. </td>
  423. <td>Indicates whether the element should be checked on page load.</td>
  424. </tr>
  425. <tr>
  426. <td>
  427. <code
  428. ><a
  429. href="/en-US/docs/Web/HTML/Attributes/cite"
  430. class="page-not-created"
  431. title="This is a link to an unwritten page"
  432. >cite</a
  433. ></code
  434. >
  435. </td>
  436. <td>
  437. <a href="/en-US/docs/Web/HTML/Element/blockquote"
  438. ><code>&lt;blockquote&gt;</code></a
  439. >, <a href="/en-US/docs/Web/HTML/Element/del"><code>&lt;del&gt;</code></a
  440. >, <a href="/en-US/docs/Web/HTML/Element/ins"><code>&lt;ins&gt;</code></a
  441. >, <a href="/en-US/docs/Web/HTML/Element/q"><code>&lt;q&gt;</code></a>
  442. </td>
  443. <td>Contains a URI which points to the source of the quote or change.</td>
  444. </tr>
  445. <tr>
  446. <td>
  447. <code
  448. ><a href="/en-US/docs/Web/HTML/Global_attributes/class">class</a></code
  449. >
  450. </td>
  451. <td>
  452. <a href="/en-US/docs/Web/HTML/Global_attributes">Global attribute</a>
  453. </td>
  454. <td>Often used with CSS to style elements with common properties.</td>
  455. </tr>
  456. <tr>
  457. <td>
  458. <code
  459. ><a href="/en-US/docs/Web/HTML/Element/applet#attr-code">code</a></code
  460. >
  461. </td>
  462. <td>
  463. <a href="/en-US/docs/Web/HTML/Element/applet"
  464. ><code>&lt;applet&gt;</code></a
  465. >
  466. </td>
  467. <td>
  468. Specifies the URL of the applet's class file to be loaded and executed.
  469. </td>
  470. </tr>
  471. <tr>
  472. <td>
  473. <code
  474. ><a href="/en-US/docs/Web/HTML/Element/applet#attr-codebase"
  475. >codebase</a
  476. ></code
  477. >
  478. </td>
  479. <td>
  480. <a href="/en-US/docs/Web/HTML/Element/applet"
  481. ><code>&lt;applet&gt;</code></a
  482. >
  483. </td>
  484. <td>
  485. This attribute gives the absolute or relative URL of the directory where
  486. applets' .class files referenced by the code attribute are stored.
  487. </td>
  488. </tr>
  489. <tr>
  490. <td><code>color</code></td>
  491. <td>
  492. <a href="/en-US/docs/Web/HTML/Element/basefont"
  493. ><code>&lt;basefont&gt;</code></a
  494. >,
  495. <a href="/en-US/docs/Web/HTML/Element/font"><code>&lt;font&gt;</code></a
  496. >, <a href="/en-US/docs/Web/HTML/Element/hr"><code>&lt;hr&gt;</code></a>
  497. </td>
  498. <td>
  499. <p>
  500. This attribute sets the text color using either a named color or a color
  501. specified in the hexadecimal #RRGGBB format.
  502. </p>
  503. <div class="note notecard">
  504. <p>
  505. <strong>Note:</strong> This is a legacy attribute. Please use the CSS
  506. <a href="/en-US/docs/Web/CSS/color"><code>color</code></a> property
  507. instead.
  508. </p>
  509. </div>
  510. </td>
  511. </tr>
  512. <tr>
  513. <td>
  514. <code
  515. ><a href="/en-US/docs/Web/HTML/Element/textarea#attr-cols"
  516. >cols</a
  517. ></code
  518. >
  519. </td>
  520. <td>
  521. <a href="/en-US/docs/Web/HTML/Element/textarea"
  522. ><code>&lt;textarea&gt;</code></a
  523. >
  524. </td>
  525. <td>Defines the number of columns in a textarea.</td>
  526. </tr>
  527. <tr>
  528. <td>
  529. <code
  530. ><a
  531. href="/en-US/docs/Web/HTML/Attributes/colspan"
  532. class="page-not-created"
  533. title="This is a link to an unwritten page"
  534. >colspan</a
  535. ></code
  536. >
  537. </td>
  538. <td>
  539. <a href="/en-US/docs/Web/HTML/Element/td"><code>&lt;td&gt;</code></a
  540. >, <a href="/en-US/docs/Web/HTML/Element/th"><code>&lt;th&gt;</code></a>
  541. </td>
  542. <td>
  543. The colspan attribute defines the number of columns a cell should span.
  544. </td>
  545. </tr>
  546. <tr>
  547. <td>
  548. <code
  549. ><a href="/en-US/docs/Web/HTML/Element/meta#attr-content"
  550. >content</a
  551. ></code
  552. >
  553. </td>
  554. <td>
  555. <a href="/en-US/docs/Web/HTML/Element/meta"><code>&lt;meta&gt;</code></a>
  556. </td>
  557. <td>
  558. A value associated with <code>http-equiv</code> or
  559. <code>name</code> depending on the context.
  560. </td>
  561. </tr>
  562. <tr>
  563. <td>
  564. <code
  565. ><a href="/en-US/docs/Web/HTML/Global_attributes/contenteditable"
  566. >contenteditable</a
  567. ></code
  568. >
  569. </td>
  570. <td>
  571. <a href="/en-US/docs/Web/HTML/Global_attributes">Global attribute</a>
  572. </td>
  573. <td>Indicates whether the element's content is editable.</td>
  574. </tr>
  575. <tr>
  576. <td>
  577. <code
  578. ><a
  579. href="/en-US/docs/Web/HTML/Attributes/contextmenu"
  580. class="page-not-created"
  581. title="This is a link to an unwritten page"
  582. >contextmenu</a
  583. ></code
  584. >
  585. </td>
  586. <td>
  587. <a href="/en-US/docs/Web/HTML/Global_attributes">Global attribute</a>
  588. </td>
  589. <td>
  590. Defines the ID of a
  591. <a href="/en-US/docs/Web/HTML/Element/menu"><code>&lt;menu&gt;</code></a>
  592. element which will serve as the element's context menu.
  593. </td>
  594. </tr>
  595. <tr>
  596. <td>
  597. <code
  598. ><a
  599. href="/en-US/docs/Web/HTML/Attributes/controls"
  600. class="page-not-created"
  601. title="This is a link to an unwritten page"
  602. >controls</a
  603. ></code
  604. >
  605. </td>
  606. <td>
  607. <a href="/en-US/docs/Web/HTML/Element/audio"><code>&lt;audio&gt;</code></a
  608. >,
  609. <a href="/en-US/docs/Web/HTML/Element/video"
  610. ><code>&lt;video&gt;</code></a
  611. >
  612. </td>
  613. <td>
  614. Indicates whether the browser should show playback controls to the user.
  615. </td>
  616. </tr>
  617. <tr>
  618. <td>
  619. <code
  620. ><a href="/en-US/docs/Web/HTML/Element/area#attr-coords"
  621. >coords</a
  622. ></code
  623. >
  624. </td>
  625. <td>
  626. <a href="/en-US/docs/Web/HTML/Element/area"><code>&lt;area&gt;</code></a>
  627. </td>
  628. <td>A set of values specifying the coordinates of the hot-spot region.</td>
  629. </tr>
  630. <tr>
  631. <td>
  632. <code
  633. ><a href="/en-US/docs/Web/HTML/Attributes/crossorigin"
  634. >crossorigin</a
  635. ></code
  636. >
  637. </td>
  638. <td>
  639. <a href="/en-US/docs/Web/HTML/Element/audio"><code>&lt;audio&gt;</code></a
  640. >, <a href="/en-US/docs/Web/HTML/Element/img"><code>&lt;img&gt;</code></a
  641. >,
  642. <a href="/en-US/docs/Web/HTML/Element/link"><code>&lt;link&gt;</code></a
  643. >,
  644. <a href="/en-US/docs/Web/HTML/Element/script"
  645. ><code>&lt;script&gt;</code></a
  646. >,
  647. <a href="/en-US/docs/Web/HTML/Element/video"
  648. ><code>&lt;video&gt;</code></a
  649. >
  650. </td>
  651. <td>How the element handles cross-origin requests</td>
  652. </tr>
  653. <tr>
  654. <td>
  655. <code><a href="/en-US/docs/Web/API/HTMLIFrameElement/csp">csp</a></code>
  656. <svg class="icon icon-experimental" tabindex="0">
  657. <use xlink:href="/assets/badges.svg#icon-experimental"></use>
  658. </svg>
  659. </td>
  660. <td>
  661. <a href="/en-US/docs/Web/HTML/Element/iframe"
  662. ><code>&lt;iframe&gt;</code></a
  663. >
  664. </td>
  665. <td>
  666. Specifies the Content Security Policy that an embedded document must agree
  667. to enforce upon itself.
  668. </td>
  669. </tr>
  670. <tr>
  671. <td>
  672. <code
  673. ><a href="/en-US/docs/Web/HTML/Element/object#attr-data">data</a></code
  674. >
  675. </td>
  676. <td>
  677. <a href="/en-US/docs/Web/HTML/Element/object"
  678. ><code>&lt;object&gt;</code></a
  679. >
  680. </td>
  681. <td>Specifies the URL of the resource.</td>
  682. </tr>
  683. <tr>
  684. <td>
  685. <code
  686. ><a href="/en-US/docs/Web/HTML/Global_attributes/data-*"
  687. >data-*</a
  688. ></code
  689. >
  690. </td>
  691. <td>
  692. <a href="/en-US/docs/Web/HTML/Global_attributes">Global attribute</a>
  693. </td>
  694. <td>Lets you attach custom attributes to an HTML element.</td>
  695. </tr>
  696. <tr>
  697. <td>
  698. <code
  699. ><a
  700. href="/en-US/docs/Web/HTML/Attributes/datetime"
  701. class="page-not-created"
  702. title="This is a link to an unwritten page"
  703. >datetime</a
  704. ></code
  705. >
  706. </td>
  707. <td>
  708. <a href="/en-US/docs/Web/HTML/Element/del"><code>&lt;del&gt;</code></a
  709. >, <a href="/en-US/docs/Web/HTML/Element/ins"><code>&lt;ins&gt;</code></a
  710. >,
  711. <a href="/en-US/docs/Web/HTML/Element/time"><code>&lt;time&gt;</code></a>
  712. </td>
  713. <td>Indicates the date and time associated with the element.</td>
  714. </tr>
  715. <tr>
  716. <td>
  717. <code
  718. ><a href="/en-US/docs/Web/HTML/Element/img#attr-decoding"
  719. >decoding</a
  720. ></code
  721. >
  722. </td>
  723. <td>
  724. <a href="/en-US/docs/Web/HTML/Element/img"><code>&lt;img&gt;</code></a>
  725. </td>
  726. <td>Indicates the preferred method to decode the image.</td>
  727. </tr>
  728. <tr>
  729. <td>
  730. <code
  731. ><a href="/en-US/docs/Web/HTML/Element/track#attr-default"
  732. >default</a
  733. ></code
  734. >
  735. </td>
  736. <td>
  737. <a href="/en-US/docs/Web/HTML/Element/track"
  738. ><code>&lt;track&gt;</code></a
  739. >
  740. </td>
  741. <td>
  742. Indicates that the track should be enabled unless the user's preferences
  743. indicate something different.
  744. </td>
  745. </tr>
  746. <tr>
  747. <td>
  748. <code
  749. ><a href="/en-US/docs/Web/HTML/Element/script#attr-defer"
  750. >defer</a
  751. ></code
  752. >
  753. </td>
  754. <td>
  755. <a href="/en-US/docs/Web/HTML/Element/script"
  756. ><code>&lt;script&gt;</code></a
  757. >
  758. </td>
  759. <td>
  760. Indicates that the script should be executed after the page has been
  761. parsed.
  762. </td>
  763. </tr>
  764. <tr>
  765. <td>
  766. <code><a href="/en-US/docs/Web/HTML/Global_attributes/dir">dir</a></code>
  767. </td>
  768. <td>
  769. <a href="/en-US/docs/Web/HTML/Global_attributes">Global attribute</a>
  770. </td>
  771. <td>
  772. Defines the text direction. Allowed values are ltr (Left-To-Right) or rtl
  773. (Right-To-Left)
  774. </td>
  775. </tr>
  776. <tr>
  777. <td>
  778. <code
  779. ><a
  780. href="/en-US/docs/Web/HTML/Attributes/dirname"
  781. class="page-not-created"
  782. title="This is a link to an unwritten page"
  783. >dirname</a
  784. ></code
  785. >
  786. </td>
  787. <td>
  788. <a href="/en-US/docs/Web/HTML/Element/input"><code>&lt;input&gt;</code></a
  789. >,
  790. <a href="/en-US/docs/Web/HTML/Element/textarea"
  791. ><code>&lt;textarea&gt;</code></a
  792. >
  793. </td>
  794. <td></td>
  795. </tr>
  796. <tr>
  797. <td>
  798. <code
  799. ><a href="/en-US/docs/Web/HTML/Attributes/disabled">disabled</a></code
  800. >
  801. </td>
  802. <td>
  803. <a href="/en-US/docs/Web/HTML/Element/button"
  804. ><code>&lt;button&gt;</code></a
  805. >,
  806. <a
  807. href="/en-US/docs/Web/HTML/Element/command"
  808. class="page-not-created"
  809. title="This is a link to an unwritten page"
  810. ><code>&lt;command&gt;</code></a
  811. >,
  812. <a href="/en-US/docs/Web/HTML/Element/fieldset"
  813. ><code>&lt;fieldset&gt;</code></a
  814. >,
  815. <a href="/en-US/docs/Web/HTML/Element/input"><code>&lt;input&gt;</code></a
  816. >,
  817. <a href="/en-US/docs/Web/HTML/Element/keygen"
  818. ><code>&lt;keygen&gt;</code></a
  819. >,
  820. <a href="/en-US/docs/Web/HTML/Element/optgroup"
  821. ><code>&lt;optgroup&gt;</code></a
  822. >,
  823. <a href="/en-US/docs/Web/HTML/Element/option"
  824. ><code>&lt;option&gt;</code></a
  825. >,
  826. <a href="/en-US/docs/Web/HTML/Element/select"
  827. ><code>&lt;select&gt;</code></a
  828. >,
  829. <a href="/en-US/docs/Web/HTML/Element/textarea"
  830. ><code>&lt;textarea&gt;</code></a
  831. >
  832. </td>
  833. <td>Indicates whether the user can interact with the element.</td>
  834. </tr>
  835. <tr>
  836. <td>
  837. <code
  838. ><a
  839. href="/en-US/docs/Web/HTML/Attributes/download"
  840. class="page-not-created"
  841. title="This is a link to an unwritten page"
  842. >download</a
  843. ></code
  844. >
  845. </td>
  846. <td>
  847. <a href="/en-US/docs/Web/HTML/Element/a"><code>&lt;a&gt;</code></a
  848. >,
  849. <a href="/en-US/docs/Web/HTML/Element/area"><code>&lt;area&gt;</code></a>
  850. </td>
  851. <td>
  852. Indicates that the hyperlink is to be used for downloading a resource.
  853. </td>
  854. </tr>
  855. <tr>
  856. <td>
  857. <code
  858. ><a href="/en-US/docs/Web/HTML/Global_attributes/draggable"
  859. >draggable</a
  860. ></code
  861. >
  862. </td>
  863. <td>
  864. <a href="/en-US/docs/Web/HTML/Global_attributes">Global attribute</a>
  865. </td>
  866. <td>Defines whether the element can be dragged.</td>
  867. </tr>
  868. <tr>
  869. <td>
  870. <code
  871. ><a href="/en-US/docs/Web/HTML/Element/form#attr-enctype"
  872. >enctype</a
  873. ></code
  874. >
  875. </td>
  876. <td>
  877. <a href="/en-US/docs/Web/HTML/Element/form"><code>&lt;form&gt;</code></a>
  878. </td>
  879. <td>
  880. Defines the content type of the form data when the <code>method</code> is
  881. POST.
  882. </td>
  883. </tr>
  884. <tr>
  885. <td>
  886. <code
  887. ><a
  888. href="/en-US/docs/Web/HTML/Attributes/enterkeyhint"
  889. class="page-not-created"
  890. title="This is a link to an unwritten page"
  891. >enterkeyhint</a
  892. ></code
  893. >
  894. <svg class="icon icon-experimental" tabindex="0">
  895. <use xlink:href="/assets/badges.svg#icon-experimental"></use>
  896. </svg>
  897. </td>
  898. <td>
  899. <a href="/en-US/docs/Web/HTML/Element/textarea"
  900. ><code>&lt;textarea&gt;</code></a
  901. >,
  902. <a href="/en-US/docs/Web/HTML/Global_attributes/contenteditable"
  903. ><code>contenteditable</code></a
  904. >
  905. </td>
  906. <td>
  907. The
  908. <a
  909. href="https://html.spec.whatwg.org/dev/interaction.html#input-modalities:-the-enterkeyhint-attribute"
  910. class="external"
  911. rel=" noopener"
  912. ><code>enterkeyhint</code></a
  913. >
  914. specifies what action label (or icon) to present for the enter key on
  915. virtual keyboards. The attribute can be used with form controls (such as
  916. the value of <code>textarea</code> elements), or in elements in an editing
  917. host (e.g., using <code>contenteditable</code> attribute).
  918. </td>
  919. </tr>
  920. <tr>
  921. <td>
  922. <code><a href="/en-US/docs/Web/HTML/Attributes/for">for</a></code>
  923. </td>
  924. <td>
  925. <a href="/en-US/docs/Web/HTML/Element/label"><code>&lt;label&gt;</code></a
  926. >,
  927. <a href="/en-US/docs/Web/HTML/Element/output"
  928. ><code>&lt;output&gt;</code></a
  929. >
  930. </td>
  931. <td>Describes elements which belongs to this one.</td>
  932. </tr>
  933. <tr>
  934. <td id="attr-form">
  935. <code
  936. ><a
  937. href="/en-US/docs/Web/HTML/Attributes/form"
  938. class="page-not-created"
  939. title="This is a link to an unwritten page"
  940. >form</a
  941. ></code
  942. >
  943. </td>
  944. <td>
  945. <a href="/en-US/docs/Web/HTML/Element/button"
  946. ><code>&lt;button&gt;</code></a
  947. >,
  948. <a href="/en-US/docs/Web/HTML/Element/fieldset"
  949. ><code>&lt;fieldset&gt;</code></a
  950. >,
  951. <a href="/en-US/docs/Web/HTML/Element/input"><code>&lt;input&gt;</code></a
  952. >,
  953. <a href="/en-US/docs/Web/HTML/Element/keygen"
  954. ><code>&lt;keygen&gt;</code></a
  955. >,
  956. <a href="/en-US/docs/Web/HTML/Element/label"><code>&lt;label&gt;</code></a
  957. >,
  958. <a href="/en-US/docs/Web/HTML/Element/meter"><code>&lt;meter&gt;</code></a
  959. >,
  960. <a href="/en-US/docs/Web/HTML/Element/object"
  961. ><code>&lt;object&gt;</code></a
  962. >,
  963. <a href="/en-US/docs/Web/HTML/Element/output"
  964. ><code>&lt;output&gt;</code></a
  965. >,
  966. <a href="/en-US/docs/Web/HTML/Element/progress"
  967. ><code>&lt;progress&gt;</code></a
  968. >,
  969. <a href="/en-US/docs/Web/HTML/Element/select"
  970. ><code>&lt;select&gt;</code></a
  971. >,
  972. <a href="/en-US/docs/Web/HTML/Element/textarea"
  973. ><code>&lt;textarea&gt;</code></a
  974. >
  975. </td>
  976. <td>Indicates the form that is the owner of the element.</td>
  977. </tr>
  978. <tr>
  979. <td>
  980. <code
  981. ><a
  982. href="/en-US/docs/Web/HTML/Attributes/formaction"
  983. class="page-not-created"
  984. title="This is a link to an unwritten page"
  985. >formaction</a
  986. ></code
  987. >
  988. </td>
  989. <td>
  990. <a href="/en-US/docs/Web/HTML/Element/input"><code>&lt;input&gt;</code></a
  991. >,
  992. <a href="/en-US/docs/Web/HTML/Element/button"
  993. ><code>&lt;button&gt;</code></a
  994. >
  995. </td>
  996. <td>
  997. Indicates the action of the element, overriding the action defined in the
  998. <a href="/en-US/docs/Web/HTML/Element/form"><code>&lt;form&gt;</code></a
  999. >.
  1000. </td>
  1001. </tr>
  1002. <tr>
  1003. <td>
  1004. <code
  1005. ><a
  1006. href="/en-US/docs/Web/HTML/Attributes/formenctype"
  1007. class="page-not-created"
  1008. title="This is a link to an unwritten page"
  1009. >formenctype</a
  1010. ></code
  1011. >
  1012. </td>
  1013. <td>
  1014. <a href="/en-US/docs/Web/HTML/Element/button"
  1015. ><code>&lt;button&gt;</code></a
  1016. >,
  1017. <a href="/en-US/docs/Web/HTML/Element/input"
  1018. ><code>&lt;input&gt;</code></a
  1019. >
  1020. </td>
  1021. <td>
  1022. If the button/input is a submit button (<code>type="submit"</code>), this
  1023. attribute sets the encoding type to use during form submission. If this
  1024. attribute is specified, it overrides the <code>enctype</code> attribute of
  1025. the button's <a href="/en-US/docs/Web/HTML/Element/form">form</a> owner.
  1026. </td>
  1027. </tr>
  1028. <tr>
  1029. <td>
  1030. <code
  1031. ><a
  1032. href="/en-US/docs/Web/HTML/Attributes/formmethod"
  1033. class="page-not-created"
  1034. title="This is a link to an unwritten page"
  1035. >formmethod</a
  1036. ></code
  1037. >
  1038. </td>
  1039. <td>
  1040. <a href="/en-US/docs/Web/HTML/Element/button"
  1041. ><code>&lt;button&gt;</code></a
  1042. >,
  1043. <a href="/en-US/docs/Web/HTML/Element/input"
  1044. ><code>&lt;input&gt;</code></a
  1045. >
  1046. </td>
  1047. <td>
  1048. If the button/input is a submit button (<code>type="submit"</code>), this
  1049. attribute sets the submission method to use during form submission
  1050. (<code>GET</code>, <code>POST</code>, etc.). If this attribute is
  1051. specified, it overrides the <code>method</code> attribute of the button's
  1052. <a href="/en-US/docs/Web/HTML/Element/form">form</a> owner.
  1053. </td>
  1054. </tr>
  1055. <tr>
  1056. <td>
  1057. <code
  1058. ><a
  1059. href="/en-US/docs/Web/HTML/Attributes/formnovalidate"
  1060. class="page-not-created"
  1061. title="This is a link to an unwritten page"
  1062. >formnovalidate</a
  1063. ></code
  1064. >
  1065. </td>
  1066. <td>
  1067. <a href="/en-US/docs/Web/HTML/Element/button"
  1068. ><code>&lt;button&gt;</code></a
  1069. >,
  1070. <a href="/en-US/docs/Web/HTML/Element/input"
  1071. ><code>&lt;input&gt;</code></a
  1072. >
  1073. </td>
  1074. <td>
  1075. If the button/input is a submit button (<code>type="submit"</code>), this
  1076. boolean attribute specifies that the form is not to be validated when it
  1077. is submitted. If this attribute is specified, it overrides the
  1078. <code>novalidate</code> attribute of the button's
  1079. <a href="/en-US/docs/Web/HTML/Element/form">form</a> owner.
  1080. </td>
  1081. </tr>
  1082. <tr>
  1083. <td>
  1084. <code
  1085. ><a
  1086. href="/en-US/docs/Web/HTML/Attributes/formtarget"
  1087. class="page-not-created"
  1088. title="This is a link to an unwritten page"
  1089. >formtarget</a
  1090. ></code
  1091. >
  1092. </td>
  1093. <td>
  1094. <a href="/en-US/docs/Web/HTML/Element/button"
  1095. ><code>&lt;button&gt;</code></a
  1096. >,
  1097. <a href="/en-US/docs/Web/HTML/Element/input"
  1098. ><code>&lt;input&gt;</code></a
  1099. >
  1100. </td>
  1101. <td>
  1102. If the button/input is a submit button (<code>type="submit"</code>), this
  1103. attribute specifies the browsing context (for example, tab, window, or
  1104. inline frame) in which to display the response that is received after
  1105. submitting the form. If this attribute is specified, it overrides the
  1106. <code>target</code> attribute of the button's
  1107. <a href="/en-US/docs/Web/HTML/Element/form">form</a> owner.
  1108. </td>
  1109. </tr>
  1110. <tr>
  1111. <td>
  1112. <code
  1113. ><a
  1114. href="/en-US/docs/Web/HTML/Attributes/headers"
  1115. class="page-not-created"
  1116. title="This is a link to an unwritten page"
  1117. >headers</a
  1118. ></code
  1119. >
  1120. </td>
  1121. <td>
  1122. <a href="/en-US/docs/Web/HTML/Element/td"><code>&lt;td&gt;</code></a
  1123. >, <a href="/en-US/docs/Web/HTML/Element/th"><code>&lt;th&gt;</code></a>
  1124. </td>
  1125. <td>
  1126. IDs of the <code>&lt;th&gt;</code> elements which applies to this element.
  1127. </td>
  1128. </tr>
  1129. <tr>
  1130. <td><code>height</code></td>
  1131. <td>
  1132. <a href="/en-US/docs/Web/HTML/Element/canvas"
  1133. ><code>&lt;canvas&gt;</code></a
  1134. >,
  1135. <a href="/en-US/docs/Web/HTML/Element/embed"><code>&lt;embed&gt;</code></a
  1136. >,
  1137. <a href="/en-US/docs/Web/HTML/Element/iframe"
  1138. ><code>&lt;iframe&gt;</code></a
  1139. >, <a href="/en-US/docs/Web/HTML/Element/img"><code>&lt;img&gt;</code></a
  1140. >,
  1141. <a href="/en-US/docs/Web/HTML/Element/input"><code>&lt;input&gt;</code></a
  1142. >,
  1143. <a href="/en-US/docs/Web/HTML/Element/object"
  1144. ><code>&lt;object&gt;</code></a
  1145. >,
  1146. <a href="/en-US/docs/Web/HTML/Element/video"
  1147. ><code>&lt;video&gt;</code></a
  1148. >
  1149. </td>
  1150. <td>
  1151. <p>
  1152. Specifies the height of elements listed here. For all other elements,
  1153. use the CSS
  1154. <a href="/en-US/docs/Web/CSS/height"><code>height</code></a> property.
  1155. </p>
  1156. <div class="note notecard">
  1157. <p>
  1158. <strong>Note:</strong> In some instances, such as
  1159. <a href="/en-US/docs/Web/HTML/Element/div"><code>&lt;div&gt;</code></a
  1160. >, this is a legacy attribute, in which case the CSS
  1161. <a href="/en-US/docs/Web/CSS/height"><code>height</code></a> property
  1162. should be used instead.
  1163. </p>
  1164. </div>
  1165. </td>
  1166. </tr>
  1167. <tr>
  1168. <td>
  1169. <code
  1170. ><a href="/en-US/docs/Web/HTML/Global_attributes/hidden"
  1171. >hidden</a
  1172. ></code
  1173. >
  1174. </td>
  1175. <td>
  1176. <a href="/en-US/docs/Web/HTML/Global_attributes">Global attribute</a>
  1177. </td>
  1178. <td>
  1179. Prevents rendering of given element, while keeping child elements, e.g.
  1180. script elements, active.
  1181. </td>
  1182. </tr>
  1183. <tr>
  1184. <td>
  1185. <code
  1186. ><a href="/en-US/docs/Web/HTML/Element/meter#attr-high">high</a></code
  1187. >
  1188. </td>
  1189. <td>
  1190. <a href="/en-US/docs/Web/HTML/Element/meter"
  1191. ><code>&lt;meter&gt;</code></a
  1192. >
  1193. </td>
  1194. <td>Indicates the lower bound of the upper range.</td>
  1195. </tr>
  1196. <tr>
  1197. <td>
  1198. <code
  1199. ><a
  1200. href="/en-US/docs/Web/HTML/Attributes/href"
  1201. class="page-not-created"
  1202. title="This is a link to an unwritten page"
  1203. >href</a
  1204. ></code
  1205. >
  1206. </td>
  1207. <td>
  1208. <a href="/en-US/docs/Web/HTML/Element/a"><code>&lt;a&gt;</code></a
  1209. >,
  1210. <a href="/en-US/docs/Web/HTML/Element/area"><code>&lt;area&gt;</code></a
  1211. >,
  1212. <a href="/en-US/docs/Web/HTML/Element/base"><code>&lt;base&gt;</code></a
  1213. >,
  1214. <a href="/en-US/docs/Web/HTML/Element/link"><code>&lt;link&gt;</code></a>
  1215. </td>
  1216. <td>The URL of a linked resource.</td>
  1217. </tr>
  1218. <tr>
  1219. <td>
  1220. <code
  1221. ><a
  1222. href="/en-US/docs/Web/HTML/Attributes/hreflang"
  1223. class="page-not-created"
  1224. title="This is a link to an unwritten page"
  1225. >hreflang</a
  1226. ></code
  1227. >
  1228. </td>
  1229. <td>
  1230. <a href="/en-US/docs/Web/HTML/Element/a"><code>&lt;a&gt;</code></a
  1231. >,
  1232. <a href="/en-US/docs/Web/HTML/Element/area"><code>&lt;area&gt;</code></a
  1233. >,
  1234. <a href="/en-US/docs/Web/HTML/Element/link"><code>&lt;link&gt;</code></a>
  1235. </td>
  1236. <td>Specifies the language of the linked resource.</td>
  1237. </tr>
  1238. <tr>
  1239. <td>
  1240. <code
  1241. ><a href="/en-US/docs/Web/HTML/Element/meta#attr-http-equiv"
  1242. >http-equiv</a
  1243. ></code
  1244. >
  1245. </td>
  1246. <td>
  1247. <a href="/en-US/docs/Web/HTML/Element/meta"><code>&lt;meta&gt;</code></a>
  1248. </td>
  1249. <td>Defines a pragma directive.</td>
  1250. </tr>
  1251. <tr>
  1252. <td>
  1253. <code
  1254. ><a
  1255. href="/en-US/docs/Web/HTML/Element/command#attr-icon"
  1256. class="page-not-created"
  1257. title="This is a link to an unwritten page"
  1258. >icon</a
  1259. ></code
  1260. >
  1261. </td>
  1262. <td>
  1263. <a
  1264. href="/en-US/docs/Web/HTML/Element/command"
  1265. class="page-not-created"
  1266. title="This is a link to an unwritten page"
  1267. ><code>&lt;command&gt;</code></a
  1268. >
  1269. </td>
  1270. <td>Specifies a picture which represents the command.</td>
  1271. </tr>
  1272. <tr>
  1273. <td>
  1274. <code><a href="/en-US/docs/Web/HTML/Global_attributes/id">id</a></code>
  1275. </td>
  1276. <td>
  1277. <a href="/en-US/docs/Web/HTML/Global_attributes">Global attribute</a>
  1278. </td>
  1279. <td>
  1280. Often used with CSS to style a specific element. The value of this
  1281. attribute must be unique.
  1282. </td>
  1283. </tr>
  1284. <tr>
  1285. <td>
  1286. <code
  1287. ><a
  1288. href="/en-US/docs/Web/HTML/Attributes/importance"
  1289. class="page-not-created"
  1290. title="This is a link to an unwritten page"
  1291. >importance</a
  1292. ></code
  1293. >
  1294. <svg class="icon icon-experimental" tabindex="0">
  1295. <use xlink:href="/assets/badges.svg#icon-experimental"></use>
  1296. </svg>
  1297. </td>
  1298. <td>
  1299. <a href="/en-US/docs/Web/HTML/Element/iframe"
  1300. ><code>&lt;iframe&gt;</code></a
  1301. >, <a href="/en-US/docs/Web/HTML/Element/img"><code>&lt;img&gt;</code></a
  1302. >,
  1303. <a href="/en-US/docs/Web/HTML/Element/link"><code>&lt;link&gt;</code></a
  1304. >,
  1305. <a href="/en-US/docs/Web/HTML/Element/script"
  1306. ><code>&lt;script&gt;</code></a
  1307. >
  1308. </td>
  1309. <td>Indicates the relative fetch priority for the resource.</td>
  1310. </tr>
  1311. <tr>
  1312. <td>
  1313. <code
  1314. ><a href="/en-US/docs/Web/Security/Subresource_Integrity"
  1315. >integrity</a
  1316. ></code
  1317. >
  1318. </td>
  1319. <td>
  1320. <a href="/en-US/docs/Web/HTML/Element/link"><code>&lt;link&gt;</code></a
  1321. >,
  1322. <a href="/en-US/docs/Web/HTML/Element/script"
  1323. ><code>&lt;script&gt;</code></a
  1324. >
  1325. </td>
  1326. <td>
  1327. <p>
  1328. Specifies a
  1329. <a href="/en-US/docs/Web/Security/Subresource_Integrity"
  1330. >Subresource Integrity</a
  1331. >
  1332. value that allows browsers to verify what they fetch.
  1333. </p>
  1334. </td>
  1335. </tr>
  1336. <tr>
  1337. <td>
  1338. <a href="/en-US/docs/Web/HTML/Element/img#attr-intrinsicsize"
  1339. ><code>intrinsicsize</code></a
  1340. >
  1341. <svg class="icon icon-deprecated" tabindex="0">
  1342. <use xlink:href="/assets/badges.svg#icon-deprecated"></use>
  1343. </svg>
  1344. </td>
  1345. <td>
  1346. <a href="/en-US/docs/Web/HTML/Element/img"><code>&lt;img&gt;</code></a>
  1347. </td>
  1348. <td>
  1349. This attribute tells the browser to ignore the actual intrinsic size of
  1350. the image and pretend it’s the size specified in the attribute.
  1351. </td>
  1352. </tr>
  1353. <tr>
  1354. <td>
  1355. <a href="/en-US/docs/Web/HTML/Global_attributes/inputmode"
  1356. ><code>inputmode</code></a
  1357. >
  1358. </td>
  1359. <td>
  1360. <a href="/en-US/docs/Web/HTML/Element/textarea"
  1361. ><code>&lt;textarea&gt;</code></a
  1362. >,
  1363. <a href="/en-US/docs/Web/HTML/Global_attributes/contenteditable"
  1364. ><code>contenteditable</code></a
  1365. >
  1366. </td>
  1367. <td>
  1368. Provides a hint as to the type of data that might be entered by the user
  1369. while editing the element or its contents. The attribute can be used with
  1370. form controls (such as the value of <code>textarea</code> elements), or in
  1371. elements in an editing host (e.g., using
  1372. <code>contenteditable</code> attribute).
  1373. </td>
  1374. </tr>
  1375. <tr>
  1376. <td>
  1377. <code
  1378. ><a href="/en-US/docs/Web/HTML/Element/img#attr-ismap">ismap</a></code
  1379. >
  1380. </td>
  1381. <td>
  1382. <a href="/en-US/docs/Web/HTML/Element/img"><code>&lt;img&gt;</code></a>
  1383. </td>
  1384. <td>Indicates that the image is part of a server-side image map.</td>
  1385. </tr>
  1386. <tr>
  1387. <td>
  1388. <code
  1389. ><a href="/en-US/docs/Web/HTML/Global_attributes/itemprop"
  1390. >itemprop</a
  1391. ></code
  1392. >
  1393. </td>
  1394. <td>
  1395. <a href="/en-US/docs/Web/HTML/Global_attributes">Global attribute</a>
  1396. </td>
  1397. <td></td>
  1398. </tr>
  1399. <tr>
  1400. <td>
  1401. <code
  1402. ><a href="/en-US/docs/Web/HTML/Element/keygen#attr-keytype"
  1403. >keytype</a
  1404. ></code
  1405. >
  1406. </td>
  1407. <td>
  1408. <a href="/en-US/docs/Web/HTML/Element/keygen"
  1409. ><code>&lt;keygen&gt;</code></a
  1410. >
  1411. </td>
  1412. <td>Specifies the type of key generated.</td>
  1413. </tr>
  1414. <tr>
  1415. <td>
  1416. <code
  1417. ><a href="/en-US/docs/Web/HTML/Element/track#attr-kind">kind</a></code
  1418. >
  1419. </td>
  1420. <td>
  1421. <a href="/en-US/docs/Web/HTML/Element/track"
  1422. ><code>&lt;track&gt;</code></a
  1423. >
  1424. </td>
  1425. <td>Specifies the kind of text track.</td>
  1426. </tr>
  1427. <tr>
  1428. <td>
  1429. <code
  1430. ><a
  1431. href="/en-US/docs/Web/HTML/Attributes/label"
  1432. class="page-not-created"
  1433. title="This is a link to an unwritten page"
  1434. >label</a
  1435. ></code
  1436. >
  1437. </td>
  1438. <td>
  1439. <a href="/en-US/docs/Web/HTML/Element/optgroup"
  1440. ><code>&lt;optgroup&gt;</code></a
  1441. >,
  1442. <a href="/en-US/docs/Web/HTML/Element/option"
  1443. ><code>&lt;option&gt;</code></a
  1444. >,
  1445. <a href="/en-US/docs/Web/HTML/Element/track"
  1446. ><code>&lt;track&gt;</code></a
  1447. >
  1448. </td>
  1449. <td>Specifies a user-readable title of the element.</td>
  1450. </tr>
  1451. <tr>
  1452. <td>
  1453. <code
  1454. ><a href="/en-US/docs/Web/HTML/Global_attributes/lang">lang</a></code
  1455. >
  1456. </td>
  1457. <td>
  1458. <a href="/en-US/docs/Web/HTML/Global_attributes">Global attribute</a>
  1459. </td>
  1460. <td>Defines the language used in the element.</td>
  1461. </tr>
  1462. <tr>
  1463. <td>
  1464. <code
  1465. ><a href="/en-US/docs/Web/HTML/Element/script#attr-language"
  1466. >language</a
  1467. ></code
  1468. >
  1469. <svg class="icon icon-deprecated" tabindex="0">
  1470. <use xlink:href="/assets/badges.svg#icon-deprecated"></use>
  1471. </svg>
  1472. </td>
  1473. <td>
  1474. <a href="/en-US/docs/Web/HTML/Element/script"
  1475. ><code>&lt;script&gt;</code></a
  1476. >
  1477. </td>
  1478. <td>Defines the script language used in the element.</td>
  1479. </tr>
  1480. <tr>
  1481. <td>
  1482. <code>loading</code>
  1483. <svg class="icon icon-experimental" tabindex="0">
  1484. <use xlink:href="/assets/badges.svg#icon-experimental"></use>
  1485. </svg>
  1486. </td>
  1487. <td>
  1488. <a href="/en-US/docs/Web/HTML/Element/img"><code>&lt;img&gt;</code></a
  1489. >,
  1490. <a href="/en-US/docs/Web/HTML/Element/iframe"
  1491. ><code>&lt;iframe&gt;</code></a
  1492. >
  1493. </td>
  1494. <td>
  1495. Indicates if the element should be loaded lazily
  1496. (<code>loading="lazy"</code>) or loaded immediately
  1497. (<code>loading="eager"</code>).
  1498. <div class="note notecard">
  1499. <strong>WIP:</strong>
  1500. <a
  1501. href="https://github.com/whatwg/html/pull/3752"
  1502. class="external"
  1503. rel=" noopener"
  1504. >WHATWG PR #3752</a
  1505. >
  1506. </div>
  1507. </td>
  1508. </tr>
  1509. <tr>
  1510. <td>
  1511. <code
  1512. ><a href="/en-US/docs/Web/HTML/Element/input#attr-list">list</a></code
  1513. >
  1514. </td>
  1515. <td>
  1516. <a href="/en-US/docs/Web/HTML/Element/input"
  1517. ><code>&lt;input&gt;</code></a
  1518. >
  1519. </td>
  1520. <td>Identifies a list of pre-defined options to suggest to the user.</td>
  1521. </tr>
  1522. <tr>
  1523. <td>
  1524. <code
  1525. ><a
  1526. href="/en-US/docs/Web/HTML/Attributes/loop"
  1527. class="page-not-created"
  1528. title="This is a link to an unwritten page"
  1529. >loop</a
  1530. ></code
  1531. >
  1532. </td>
  1533. <td>
  1534. <a href="/en-US/docs/Web/HTML/Element/audio"><code>&lt;audio&gt;</code></a
  1535. >,
  1536. <a href="/en-US/docs/Web/HTML/Element/bgsound"
  1537. ><code>&lt;bgsound&gt;</code></a
  1538. >,
  1539. <a href="/en-US/docs/Web/HTML/Element/marquee"
  1540. ><code>&lt;marquee&gt;</code></a
  1541. >,
  1542. <a href="/en-US/docs/Web/HTML/Element/video"
  1543. ><code>&lt;video&gt;</code></a
  1544. >
  1545. </td>
  1546. <td>
  1547. Indicates whether the media should start playing from the start when it's
  1548. finished.
  1549. </td>
  1550. </tr>
  1551. <tr>
  1552. <td>
  1553. <code><a href="/en-US/docs/Web/HTML/Element/meter#attr-low">low</a></code>
  1554. </td>
  1555. <td>
  1556. <a href="/en-US/docs/Web/HTML/Element/meter"
  1557. ><code>&lt;meter&gt;</code></a
  1558. >
  1559. </td>
  1560. <td>Indicates the upper bound of the lower range.</td>
  1561. </tr>
  1562. <tr>
  1563. <td>
  1564. <code
  1565. ><a href="/en-US/docs/Web/HTML/Element/html#attr-manifest"
  1566. >manifest</a
  1567. ></code
  1568. >
  1569. <svg class="icon icon-deprecated" tabindex="0">
  1570. <use xlink:href="/assets/badges.svg#icon-deprecated"></use>
  1571. </svg>
  1572. </td>
  1573. <td>
  1574. <a href="/en-US/docs/Web/HTML/Element/html"><code>&lt;html&gt;</code></a>
  1575. </td>
  1576. <td>
  1577. Specifies the URL of the document's cache manifest.
  1578. <div class="note notecard">
  1579. <strong>Note:</strong> This attribute is obsolete, use
  1580. <a href="/en-US/docs/Web/Manifest"
  1581. ><code>&lt;link rel="manifest"&gt;</code></a
  1582. >
  1583. instead.
  1584. </div>
  1585. </td>
  1586. </tr>
  1587. <tr>
  1588. <td>
  1589. <code><a href="/en-US/docs/Web/HTML/Attributes/max">max</a></code>
  1590. </td>
  1591. <td>
  1592. <a href="/en-US/docs/Web/HTML/Element/input"><code>&lt;input&gt;</code></a
  1593. >,
  1594. <a href="/en-US/docs/Web/HTML/Element/meter"><code>&lt;meter&gt;</code></a
  1595. >,
  1596. <a href="/en-US/docs/Web/HTML/Element/progress"
  1597. ><code>&lt;progress&gt;</code></a
  1598. >
  1599. </td>
  1600. <td>Indicates the maximum value allowed.</td>
  1601. </tr>
  1602. <tr>
  1603. <td>
  1604. <code
  1605. ><a href="/en-US/docs/Web/HTML/Attributes/maxlength">maxlength</a></code
  1606. >
  1607. </td>
  1608. <td>
  1609. <a href="/en-US/docs/Web/HTML/Element/input"><code>&lt;input&gt;</code></a
  1610. >,
  1611. <a href="/en-US/docs/Web/HTML/Element/textarea"
  1612. ><code>&lt;textarea&gt;</code></a
  1613. >
  1614. </td>
  1615. <td>Defines the maximum number of characters allowed in the element.</td>
  1616. </tr>
  1617. <tr>
  1618. <td>
  1619. <code
  1620. ><a href="/en-US/docs/Web/HTML/Attributes/minlength">minlength</a></code
  1621. >
  1622. </td>
  1623. <td>
  1624. <a href="/en-US/docs/Web/HTML/Element/input"><code>&lt;input&gt;</code></a
  1625. >,
  1626. <a href="/en-US/docs/Web/HTML/Element/textarea"
  1627. ><code>&lt;textarea&gt;</code></a
  1628. >
  1629. </td>
  1630. <td>Defines the minimum number of characters allowed in the element.</td>
  1631. </tr>
  1632. <tr>
  1633. <td>
  1634. <code
  1635. ><a
  1636. href="/en-US/docs/Web/HTML/Attributes/media"
  1637. class="page-not-created"
  1638. title="This is a link to an unwritten page"
  1639. >media</a
  1640. ></code
  1641. >
  1642. </td>
  1643. <td>
  1644. <a href="/en-US/docs/Web/HTML/Element/a"><code>&lt;a&gt;</code></a
  1645. >,
  1646. <a href="/en-US/docs/Web/HTML/Element/area"><code>&lt;area&gt;</code></a
  1647. >,
  1648. <a href="/en-US/docs/Web/HTML/Element/link"><code>&lt;link&gt;</code></a
  1649. >,
  1650. <a href="/en-US/docs/Web/HTML/Element/source"
  1651. ><code>&lt;source&gt;</code></a
  1652. >,
  1653. <a href="/en-US/docs/Web/HTML/Element/style"
  1654. ><code>&lt;style&gt;</code></a
  1655. >
  1656. </td>
  1657. <td>
  1658. Specifies a hint of the media for which the linked resource was designed.
  1659. </td>
  1660. </tr>
  1661. <tr>
  1662. <td><a href="/en-US/docs/Web/HTML/Element/form#attr-method">method</a></td>
  1663. <td>
  1664. <a href="/en-US/docs/Web/HTML/Element/form"><code>&lt;form&gt;</code></a>
  1665. </td>
  1666. <td>
  1667. Defines which <a href="/en-US/docs/Web/HTTP">HTTP</a> method to use when
  1668. submitting the form. Can be <code>GET</code> (default) or
  1669. <code>POST</code>.
  1670. </td>
  1671. </tr>
  1672. <tr>
  1673. <td>
  1674. <code><a href="/en-US/docs/Web/HTML/Attributes/min">min</a></code>
  1675. </td>
  1676. <td>
  1677. <a href="/en-US/docs/Web/HTML/Element/input"><code>&lt;input&gt;</code></a
  1678. >,
  1679. <a href="/en-US/docs/Web/HTML/Element/meter"
  1680. ><code>&lt;meter&gt;</code></a
  1681. >
  1682. </td>
  1683. <td>Indicates the minimum value allowed.</td>
  1684. </tr>
  1685. <tr>
  1686. <td>
  1687. <code
  1688. ><a href="/en-US/docs/Web/HTML/Attributes/multiple">multiple</a></code
  1689. >
  1690. </td>
  1691. <td>
  1692. <a href="/en-US/docs/Web/HTML/Element/input"><code>&lt;input&gt;</code></a
  1693. >,
  1694. <a href="/en-US/docs/Web/HTML/Element/select"
  1695. ><code>&lt;select&gt;</code></a
  1696. >
  1697. </td>
  1698. <td>
  1699. Indicates whether multiple values can be entered in an input of the type
  1700. <code>email</code> or <code>file</code>.
  1701. </td>
  1702. </tr>
  1703. <tr>
  1704. <td>
  1705. <code
  1706. ><a
  1707. href="/en-US/docs/Web/HTML/Attributes/muted"
  1708. class="page-not-created"
  1709. title="This is a link to an unwritten page"
  1710. >muted</a
  1711. ></code
  1712. >
  1713. </td>
  1714. <td>
  1715. <a href="/en-US/docs/Web/HTML/Element/audio"><code>&lt;audio&gt;</code></a
  1716. >,
  1717. <a href="/en-US/docs/Web/HTML/Element/video"
  1718. ><code>&lt;video&gt;</code></a
  1719. >
  1720. </td>
  1721. <td>
  1722. Indicates whether the audio will be initially silenced on page load.
  1723. </td>
  1724. </tr>
  1725. <tr>
  1726. <td>
  1727. <code
  1728. ><a
  1729. href="/en-US/docs/Web/HTML/Attributes/name"
  1730. class="page-not-created"
  1731. title="This is a link to an unwritten page"
  1732. >name</a
  1733. ></code
  1734. >
  1735. </td>
  1736. <td>
  1737. <a href="/en-US/docs/Web/HTML/Element/button"
  1738. ><code>&lt;button&gt;</code></a
  1739. >,
  1740. <a href="/en-US/docs/Web/HTML/Element/form"><code>&lt;form&gt;</code></a
  1741. >,
  1742. <a href="/en-US/docs/Web/HTML/Element/fieldset"
  1743. ><code>&lt;fieldset&gt;</code></a
  1744. >,
  1745. <a href="/en-US/docs/Web/HTML/Element/iframe"
  1746. ><code>&lt;iframe&gt;</code></a
  1747. >,
  1748. <a href="/en-US/docs/Web/HTML/Element/input"><code>&lt;input&gt;</code></a
  1749. >,
  1750. <a href="/en-US/docs/Web/HTML/Element/keygen"
  1751. ><code>&lt;keygen&gt;</code></a
  1752. >,
  1753. <a href="/en-US/docs/Web/HTML/Element/object"
  1754. ><code>&lt;object&gt;</code></a
  1755. >,
  1756. <a href="/en-US/docs/Web/HTML/Element/output"
  1757. ><code>&lt;output&gt;</code></a
  1758. >,
  1759. <a href="/en-US/docs/Web/HTML/Element/select"
  1760. ><code>&lt;select&gt;</code></a
  1761. >,
  1762. <a href="/en-US/docs/Web/HTML/Element/textarea"
  1763. ><code>&lt;textarea&gt;</code></a
  1764. >, <a href="/en-US/docs/Web/HTML/Element/map"><code>&lt;map&gt;</code></a
  1765. >,
  1766. <a href="/en-US/docs/Web/HTML/Element/meta"><code>&lt;meta&gt;</code></a
  1767. >,
  1768. <a href="/en-US/docs/Web/HTML/Element/param"
  1769. ><code>&lt;param&gt;</code></a
  1770. >
  1771. </td>
  1772. <td>
  1773. Name of the element. For example used by the server to identify the fields
  1774. in form submits.
  1775. </td>
  1776. </tr>
  1777. <tr>
  1778. <td>
  1779. <code
  1780. ><a href="/en-US/docs/Web/HTML/Element/form#attr-novalidate"
  1781. >novalidate</a
  1782. ></code
  1783. >
  1784. </td>
  1785. <td>
  1786. <a href="/en-US/docs/Web/HTML/Element/form"><code>&lt;form&gt;</code></a>
  1787. </td>
  1788. <td>
  1789. This attribute indicates that the form shouldn't be validated when
  1790. submitted.
  1791. </td>
  1792. </tr>
  1793. <tr>
  1794. <td>
  1795. <code
  1796. ><a href="/en-US/docs/Web/HTML/Element/details#attr-open">open</a></code
  1797. >
  1798. </td>
  1799. <td>
  1800. <a href="/en-US/docs/Web/HTML/Element/details"
  1801. ><code>&lt;details&gt;</code></a
  1802. >
  1803. </td>
  1804. <td>Indicates whether the details will be shown on page load.</td>
  1805. </tr>
  1806. <tr>
  1807. <td>
  1808. <code
  1809. ><a href="/en-US/docs/Web/HTML/Element/meter#attr-optimum"
  1810. >optimum</a
  1811. ></code
  1812. >
  1813. </td>
  1814. <td>
  1815. <a href="/en-US/docs/Web/HTML/Element/meter"
  1816. ><code>&lt;meter&gt;</code></a
  1817. >
  1818. </td>
  1819. <td>Indicates the optimal numeric value.</td>
  1820. </tr>
  1821. <tr>
  1822. <td>
  1823. <code><a href="/en-US/docs/Web/HTML/Attributes/pattern">pattern</a></code>
  1824. </td>
  1825. <td>
  1826. <a href="/en-US/docs/Web/HTML/Element/input"
  1827. ><code>&lt;input&gt;</code></a
  1828. >
  1829. </td>
  1830. <td>
  1831. Defines a regular expression which the element's value will be validated
  1832. against.
  1833. </td>
  1834. </tr>
  1835. <tr>
  1836. <td>
  1837. <code><a href="/en-US/docs/Web/HTML/Element/a#attr-ping">ping</a></code>
  1838. </td>
  1839. <td>
  1840. <a href="/en-US/docs/Web/HTML/Element/a"><code>&lt;a&gt;</code></a
  1841. >,
  1842. <a href="/en-US/docs/Web/HTML/Element/area"><code>&lt;area&gt;</code></a>
  1843. </td>
  1844. <td>
  1845. The <code>ping</code> attribute specifies a space-separated list of URLs
  1846. to be notified if a user follows the hyperlink.
  1847. </td>
  1848. </tr>
  1849. <tr>
  1850. <td>
  1851. <code
  1852. ><a
  1853. href="/en-US/docs/Web/HTML/Attributes/placeholder"
  1854. class="page-not-created"
  1855. title="This is a link to an unwritten page"
  1856. >placeholder</a
  1857. ></code
  1858. >
  1859. </td>
  1860. <td>
  1861. <a href="/en-US/docs/Web/HTML/Element/input"><code>&lt;input&gt;</code></a
  1862. >,
  1863. <a href="/en-US/docs/Web/HTML/Element/textarea"
  1864. ><code>&lt;textarea&gt;</code></a
  1865. >
  1866. </td>
  1867. <td>Provides a hint to the user of what can be entered in the field.</td>
  1868. </tr>
  1869. <tr>
  1870. <td>
  1871. <code
  1872. ><a href="/en-US/docs/Web/HTML/Element/video#attr-poster"
  1873. >poster</a
  1874. ></code
  1875. >
  1876. </td>
  1877. <td>
  1878. <a href="/en-US/docs/Web/HTML/Element/video"
  1879. ><code>&lt;video&gt;</code></a
  1880. >
  1881. </td>
  1882. <td>
  1883. A URL indicating a poster frame to show until the user plays or seeks.
  1884. </td>
  1885. </tr>
  1886. <tr>
  1887. <td>
  1888. <code
  1889. ><a
  1890. href="/en-US/docs/Web/HTML/Attributes/preload"
  1891. class="page-not-created"
  1892. title="This is a link to an unwritten page"
  1893. >preload</a
  1894. ></code
  1895. >
  1896. </td>
  1897. <td>
  1898. <a href="/en-US/docs/Web/HTML/Element/audio"><code>&lt;audio&gt;</code></a
  1899. >,
  1900. <a href="/en-US/docs/Web/HTML/Element/video"
  1901. ><code>&lt;video&gt;</code></a
  1902. >
  1903. </td>
  1904. <td>
  1905. Indicates whether the whole resource, parts of it or nothing should be
  1906. preloaded.
  1907. </td>
  1908. </tr>
  1909. <tr>
  1910. <td>
  1911. <code
  1912. ><a
  1913. href="/en-US/docs/Web/HTML/Element/command#attr-radiogroup"
  1914. class="page-not-created"
  1915. title="This is a link to an unwritten page"
  1916. >radiogroup</a
  1917. ></code
  1918. >
  1919. </td>
  1920. <td>
  1921. <a
  1922. href="/en-US/docs/Web/HTML/Element/command"
  1923. class="page-not-created"
  1924. title="This is a link to an unwritten page"
  1925. ><code>&lt;command&gt;</code></a
  1926. >
  1927. </td>
  1928. <td></td>
  1929. </tr>
  1930. <tr>
  1931. <td>
  1932. <code
  1933. ><a href="/en-US/docs/Web/HTML/Attributes/readonly">readonly</a></code
  1934. >
  1935. </td>
  1936. <td>
  1937. <a href="/en-US/docs/Web/HTML/Element/input"><code>&lt;input&gt;</code></a
  1938. >,
  1939. <a href="/en-US/docs/Web/HTML/Element/textarea"
  1940. ><code>&lt;textarea&gt;</code></a
  1941. >
  1942. </td>
  1943. <td>Indicates whether the element can be edited.</td>
  1944. </tr>
  1945. <tr>
  1946. <td>
  1947. <code
  1948. ><a
  1949. href="/en-US/docs/Web/HTML/Attributes/referralpolicy"
  1950. class="page-not-created"
  1951. title="This is a link to an unwritten page"
  1952. >referrerpolicy</a
  1953. ></code
  1954. >
  1955. </td>
  1956. <td>
  1957. <a href="/en-US/docs/Web/HTML/Element/a"><code>&lt;a&gt;</code></a
  1958. >,
  1959. <a href="/en-US/docs/Web/HTML/Element/area"><code>&lt;area&gt;</code></a
  1960. >,
  1961. <a href="/en-US/docs/Web/HTML/Element/iframe"
  1962. ><code>&lt;iframe&gt;</code></a
  1963. >, <a href="/en-US/docs/Web/HTML/Element/img"><code>&lt;img&gt;</code></a
  1964. >,
  1965. <a href="/en-US/docs/Web/HTML/Element/link"><code>&lt;link&gt;</code></a
  1966. >,
  1967. <a href="/en-US/docs/Web/HTML/Element/script"
  1968. ><code>&lt;script&gt;</code></a
  1969. >
  1970. </td>
  1971. <td>Specifies which referrer is sent when fetching the resource.</td>
  1972. </tr>
  1973. <tr>
  1974. <td>
  1975. <code><a href="/en-US/docs/Web/HTML/Attributes/rel">rel</a></code>
  1976. </td>
  1977. <td>
  1978. <a href="/en-US/docs/Web/HTML/Element/a"><code>&lt;a&gt;</code></a
  1979. >,
  1980. <a href="/en-US/docs/Web/HTML/Element/area"><code>&lt;area&gt;</code></a
  1981. >,
  1982. <a href="/en-US/docs/Web/HTML/Element/link"><code>&lt;link&gt;</code></a>
  1983. </td>
  1984. <td>Specifies the relationship of the target object to the link object.</td>
  1985. </tr>
  1986. <tr>
  1987. <td>
  1988. <code
  1989. ><a href="/en-US/docs/Web/HTML/Attributes/required">required</a></code
  1990. >
  1991. </td>
  1992. <td>
  1993. <a href="/en-US/docs/Web/HTML/Element/input"><code>&lt;input&gt;</code></a
  1994. >,
  1995. <a href="/en-US/docs/Web/HTML/Element/select"
  1996. ><code>&lt;select&gt;</code></a
  1997. >,
  1998. <a href="/en-US/docs/Web/HTML/Element/textarea"
  1999. ><code>&lt;textarea&gt;</code></a
  2000. >
  2001. </td>
  2002. <td>Indicates whether this element is required to fill out or not.</td>
  2003. </tr>
  2004. <tr>
  2005. <td>
  2006. <code
  2007. ><a href="/en-US/docs/Web/HTML/Element/ol#attr-reversed"
  2008. >reversed</a
  2009. ></code
  2010. >
  2011. </td>
  2012. <td>
  2013. <a href="/en-US/docs/Web/HTML/Element/ol"><code>&lt;ol&gt;</code></a>
  2014. </td>
  2015. <td>
  2016. Indicates whether the list should be displayed in a descending order
  2017. instead of a ascending.
  2018. </td>
  2019. </tr>
  2020. <tr>
  2021. <td>
  2022. <code
  2023. ><a href="/en-US/docs/Web/HTML/Element/textarea#attr-rows"
  2024. >rows</a
  2025. ></code
  2026. >
  2027. </td>
  2028. <td>
  2029. <a href="/en-US/docs/Web/HTML/Element/textarea"
  2030. ><code>&lt;textarea&gt;</code></a
  2031. >
  2032. </td>
  2033. <td>Defines the number of rows in a text area.</td>
  2034. </tr>
  2035. <tr>
  2036. <td>
  2037. <code
  2038. ><a
  2039. href="/en-US/docs/Web/HTML/Attributes/rowspan"
  2040. class="page-not-created"
  2041. title="This is a link to an unwritten page"
  2042. >rowspan</a
  2043. ></code
  2044. >
  2045. </td>
  2046. <td>
  2047. <a href="/en-US/docs/Web/HTML/Element/td"><code>&lt;td&gt;</code></a
  2048. >, <a href="/en-US/docs/Web/HTML/Element/th"><code>&lt;th&gt;</code></a>
  2049. </td>
  2050. <td>Defines the number of rows a table cell should span over.</td>
  2051. </tr>
  2052. <tr>
  2053. <td>
  2054. <code
  2055. ><a href="/en-US/docs/Web/HTML/Element/iframe#attr-sandbox"
  2056. >sandbox</a
  2057. ></code
  2058. >
  2059. </td>
  2060. <td>
  2061. <a href="/en-US/docs/Web/HTML/Element/iframe"
  2062. ><code>&lt;iframe&gt;</code></a
  2063. >
  2064. </td>
  2065. <td>
  2066. Stops a document loaded in an iframe from using certain features (such as
  2067. submitting forms or opening new windows).
  2068. </td>
  2069. </tr>
  2070. <tr>
  2071. <td>
  2072. <code
  2073. ><a href="/en-US/docs/Web/HTML/Element/th#attr-scope">scope</a></code
  2074. >
  2075. </td>
  2076. <td>
  2077. <a href="/en-US/docs/Web/HTML/Element/th"><code>&lt;th&gt;</code></a>
  2078. </td>
  2079. <td>
  2080. Defines the cells that the header test (defined in the
  2081. <code>th</code> element) relates to.
  2082. </td>
  2083. </tr>
  2084. <tr>
  2085. <td>
  2086. <code
  2087. ><a href="/en-US/docs/Web/HTML/Element/style#attr-scoped"
  2088. >scoped</a
  2089. ></code
  2090. >
  2091. <svg class="icon icon-nonstandard" tabindex="0">
  2092. <use xlink:href="/assets/badges.svg#icon-nonstandard"></use>
  2093. </svg>
  2094. <svg class="icon icon-deprecated" tabindex="0">
  2095. <use xlink:href="/assets/badges.svg#icon-deprecated"></use>
  2096. </svg>
  2097. </td>
  2098. <td>
  2099. <a href="/en-US/docs/Web/HTML/Element/style"
  2100. ><code>&lt;style&gt;</code></a
  2101. >
  2102. </td>
  2103. <td></td>
  2104. </tr>
  2105. <tr>
  2106. <td>
  2107. <code
  2108. ><a href="/en-US/docs/Web/HTML/Element/option#attr-selected"
  2109. >selected</a
  2110. ></code
  2111. >
  2112. </td>
  2113. <td>
  2114. <a href="/en-US/docs/Web/HTML/Element/option"
  2115. ><code>&lt;option&gt;</code></a
  2116. >
  2117. </td>
  2118. <td>Defines a value which will be selected on page load.</td>
  2119. </tr>
  2120. <tr>
  2121. <td>
  2122. <code
  2123. ><a
  2124. href="/en-US/docs/Web/HTML/Attributes/shape"
  2125. class="page-not-created"
  2126. title="This is a link to an unwritten page"
  2127. >shape</a
  2128. ></code
  2129. >
  2130. </td>
  2131. <td>
  2132. <a href="/en-US/docs/Web/HTML/Element/a"><code>&lt;a&gt;</code></a
  2133. >,
  2134. <a href="/en-US/docs/Web/HTML/Element/area"><code>&lt;area&gt;</code></a>
  2135. </td>
  2136. <td></td>
  2137. </tr>
  2138. <tr>
  2139. <td>
  2140. <code><a href="/en-US/docs/Web/HTML/Attributes/size">size</a></code>
  2141. </td>
  2142. <td>
  2143. <a href="/en-US/docs/Web/HTML/Element/input"><code>&lt;input&gt;</code></a
  2144. >,
  2145. <a href="/en-US/docs/Web/HTML/Element/select"
  2146. ><code>&lt;select&gt;</code></a
  2147. >
  2148. </td>
  2149. <td>
  2150. Defines the width of the element (in pixels). If the element's
  2151. <code>type</code> attribute is <code>text</code> or
  2152. <code>password</code> then it's the number of characters.
  2153. </td>
  2154. </tr>
  2155. <tr>
  2156. <td>
  2157. <code
  2158. ><a
  2159. href="/en-US/docs/Web/HTML/Attributes/sizes"
  2160. class="page-not-created"
  2161. title="This is a link to an unwritten page"
  2162. >sizes</a
  2163. ></code
  2164. >
  2165. </td>
  2166. <td>
  2167. <a href="/en-US/docs/Web/HTML/Element/link"><code>&lt;link&gt;</code></a
  2168. >, <a href="/en-US/docs/Web/HTML/Element/img"><code>&lt;img&gt;</code></a
  2169. >,
  2170. <a href="/en-US/docs/Web/HTML/Element/source"
  2171. ><code>&lt;source&gt;</code></a
  2172. >
  2173. </td>
  2174. <td></td>
  2175. </tr>
  2176. <tr>
  2177. <td>
  2178. <code
  2179. ><a href="/en-US/docs/Web/HTML/Global_attributes/slot">slot</a></code
  2180. >
  2181. </td>
  2182. <td>
  2183. <a href="/en-US/docs/Web/HTML/Global_attributes">Global attribute</a>
  2184. </td>
  2185. <td>Assigns a slot in a shadow DOM shadow tree to an element.</td>
  2186. </tr>
  2187. <tr>
  2188. <td>
  2189. <code
  2190. ><a
  2191. href="/en-US/docs/Web/HTML/Attributes/span"
  2192. class="page-not-created"
  2193. title="This is a link to an unwritten page"
  2194. >span</a
  2195. ></code
  2196. >
  2197. </td>
  2198. <td>
  2199. <a href="/en-US/docs/Web/HTML/Element/col"><code>&lt;col&gt;</code></a
  2200. >,
  2201. <a href="/en-US/docs/Web/HTML/Element/colgroup"
  2202. ><code>&lt;colgroup&gt;</code></a
  2203. >
  2204. </td>
  2205. <td></td>
  2206. </tr>
  2207. <tr>
  2208. <td>
  2209. <code
  2210. ><a href="/en-US/docs/Web/HTML/Global_attributes/spellcheck"
  2211. >spellcheck</a
  2212. ></code
  2213. >
  2214. </td>
  2215. <td>
  2216. <a href="/en-US/docs/Web/HTML/Global_attributes">Global attribute</a>
  2217. </td>
  2218. <td>Indicates whether spell checking is allowed for the element.</td>
  2219. </tr>
  2220. <tr>
  2221. <td>
  2222. <code
  2223. ><a
  2224. href="/en-US/docs/Web/HTML/Attributes/src"
  2225. class="page-not-created"
  2226. title="This is a link to an unwritten page"
  2227. >src</a
  2228. ></code
  2229. >
  2230. </td>
  2231. <td>
  2232. <a href="/en-US/docs/Web/HTML/Element/audio"><code>&lt;audio&gt;</code></a
  2233. >,
  2234. <a href="/en-US/docs/Web/HTML/Element/embed"><code>&lt;embed&gt;</code></a
  2235. >,
  2236. <a href="/en-US/docs/Web/HTML/Element/iframe"
  2237. ><code>&lt;iframe&gt;</code></a
  2238. >, <a href="/en-US/docs/Web/HTML/Element/img"><code>&lt;img&gt;</code></a
  2239. >,
  2240. <a href="/en-US/docs/Web/HTML/Element/input"><code>&lt;input&gt;</code></a
  2241. >,
  2242. <a href="/en-US/docs/Web/HTML/Element/script"
  2243. ><code>&lt;script&gt;</code></a
  2244. >,
  2245. <a href="/en-US/docs/Web/HTML/Element/source"
  2246. ><code>&lt;source&gt;</code></a
  2247. >,
  2248. <a href="/en-US/docs/Web/HTML/Element/track"><code>&lt;track&gt;</code></a
  2249. >,
  2250. <a href="/en-US/docs/Web/HTML/Element/video"
  2251. ><code>&lt;video&gt;</code></a
  2252. >
  2253. </td>
  2254. <td>The URL of the embeddable content.</td>
  2255. </tr>
  2256. <tr>
  2257. <td>
  2258. <code
  2259. ><a href="/en-US/docs/Web/HTML/Element/iframe#attr-srcdoc"
  2260. >srcdoc</a
  2261. ></code
  2262. >
  2263. </td>
  2264. <td>
  2265. <a href="/en-US/docs/Web/HTML/Element/iframe"
  2266. ><code>&lt;iframe&gt;</code></a
  2267. >
  2268. </td>
  2269. <td></td>
  2270. </tr>
  2271. <tr>
  2272. <td>
  2273. <code
  2274. ><a href="/en-US/docs/Web/HTML/Element/track#attr-srclang"
  2275. >srclang</a
  2276. ></code
  2277. >
  2278. </td>
  2279. <td>
  2280. <a href="/en-US/docs/Web/HTML/Element/track"
  2281. ><code>&lt;track&gt;</code></a
  2282. >
  2283. </td>
  2284. <td></td>
  2285. </tr>
  2286. <tr>
  2287. <td>
  2288. <code
  2289. ><a
  2290. href="/en-US/docs/Web/HTML/Attributes/srcset"
  2291. class="page-not-created"
  2292. title="This is a link to an unwritten page"
  2293. >srcset</a
  2294. ></code
  2295. >
  2296. </td>
  2297. <td>
  2298. <a href="/en-US/docs/Web/HTML/Element/img"><code>&lt;img&gt;</code></a
  2299. >,
  2300. <a href="/en-US/docs/Web/HTML/Element/source"
  2301. ><code>&lt;source&gt;</code></a
  2302. >
  2303. </td>
  2304. <td>One or more responsive image candidates.</td>
  2305. </tr>
  2306. <tr>
  2307. <td>
  2308. <code
  2309. ><a href="/en-US/docs/Web/HTML/Element/ol#attr-start">start</a></code
  2310. >
  2311. </td>
  2312. <td>
  2313. <a href="/en-US/docs/Web/HTML/Element/ol"><code>&lt;ol&gt;</code></a>
  2314. </td>
  2315. <td>Defines the first number if other than 1.</td>
  2316. </tr>
  2317. <tr>
  2318. <td>
  2319. <code><a href="/en-US/docs/Web/HTML/Attributes/step">step</a></code>
  2320. </td>
  2321. <td>
  2322. <a href="/en-US/docs/Web/HTML/Element/input"
  2323. ><code>&lt;input&gt;</code></a
  2324. >
  2325. </td>
  2326. <td></td>
  2327. </tr>
  2328. <tr>
  2329. <td>
  2330. <code
  2331. ><a href="/en-US/docs/Web/HTML/Global_attributes/style">style</a></code
  2332. >
  2333. </td>
  2334. <td>
  2335. <a href="/en-US/docs/Web/HTML/Global_attributes">Global attribute</a>
  2336. </td>
  2337. <td>Defines CSS styles which will override styles previously set.</td>
  2338. </tr>
  2339. <tr>
  2340. <td>
  2341. <code
  2342. ><a href="/en-US/docs/Web/HTML/Element/table#attr-summary"
  2343. >summary</a
  2344. ></code
  2345. >
  2346. <svg class="icon icon-deprecated" tabindex="0">
  2347. <use xlink:href="/assets/badges.svg#icon-deprecated"></use>
  2348. </svg>
  2349. </td>
  2350. <td>
  2351. <a href="/en-US/docs/Web/HTML/Element/table"
  2352. ><code>&lt;table&gt;</code></a
  2353. >
  2354. </td>
  2355. <td></td>
  2356. </tr>
  2357. <tr>
  2358. <td>
  2359. <code
  2360. ><a href="/en-US/docs/Web/HTML/Global_attributes/tabindex"
  2361. >tabindex</a
  2362. ></code
  2363. >
  2364. </td>
  2365. <td>
  2366. <a href="/en-US/docs/Web/HTML/Global_attributes">Global attribute</a>
  2367. </td>
  2368. <td>
  2369. Overrides the browser's default tab order and follows the one specified
  2370. instead.
  2371. </td>
  2372. </tr>
  2373. <tr>
  2374. <td>
  2375. <code
  2376. ><a
  2377. href="/en-US/docs/Web/HTML/Attributes/target"
  2378. class="page-not-created"
  2379. title="This is a link to an unwritten page"
  2380. >target</a
  2381. ></code
  2382. >
  2383. </td>
  2384. <td>
  2385. <a href="/en-US/docs/Web/HTML/Element/a"><code>&lt;a&gt;</code></a
  2386. >,
  2387. <a href="/en-US/docs/Web/HTML/Element/area"><code>&lt;area&gt;</code></a
  2388. >,
  2389. <a href="/en-US/docs/Web/HTML/Element/base"><code>&lt;base&gt;</code></a
  2390. >,
  2391. <a href="/en-US/docs/Web/HTML/Element/form"><code>&lt;form&gt;</code></a>
  2392. </td>
  2393. <td>
  2394. Specifies where to open the linked document (in the case of an
  2395. <code>&lt;a&gt;</code> element) or where to display the response received
  2396. (in the case of a <code>&lt;form&gt;</code> element)
  2397. </td>
  2398. </tr>
  2399. <tr>
  2400. <td>
  2401. <code
  2402. ><a href="/en-US/docs/Web/HTML/Global_attributes/title">title</a></code
  2403. >
  2404. </td>
  2405. <td>
  2406. <a href="/en-US/docs/Web/HTML/Global_attributes">Global attribute</a>
  2407. </td>
  2408. <td>Text to be displayed in a tooltip when hovering over the element.</td>
  2409. </tr>
  2410. <tr>
  2411. <td>
  2412. <code
  2413. ><a href="/en-US/docs/Web/HTML/Global_attributes/translate"
  2414. >translate</a
  2415. ></code
  2416. >
  2417. </td>
  2418. <td>
  2419. <a href="/en-US/docs/Web/HTML/Global_attributes">Global attribute</a>
  2420. </td>
  2421. <td>
  2422. Specify whether an element’s attribute values and the values of its
  2423. <code
  2424. ><a
  2425. href="https://dom.spec.whatwg.org/#text"
  2426. id="ref-for-text①⑦"
  2427. class="external"
  2428. rel=" noopener"
  2429. >Text</a
  2430. ></code
  2431. >
  2432. node children are to be translated when the page is localized, or whether
  2433. to leave them unchanged.
  2434. </td>
  2435. </tr>
  2436. <tr>
  2437. <td>
  2438. <code
  2439. ><a
  2440. href="/en-US/docs/Web/HTML/Attributes/type"
  2441. class="page-not-created"
  2442. title="This is a link to an unwritten page"
  2443. >type</a
  2444. ></code
  2445. >
  2446. </td>
  2447. <td>
  2448. <a href="/en-US/docs/Web/HTML/Element/button"
  2449. ><code>&lt;button&gt;</code></a
  2450. >,
  2451. <a href="/en-US/docs/Web/HTML/Element/input"><code>&lt;input&gt;</code></a
  2452. >,
  2453. <a
  2454. href="/en-US/docs/Web/HTML/Element/command"
  2455. class="page-not-created"
  2456. title="This is a link to an unwritten page"
  2457. ><code>&lt;command&gt;</code></a
  2458. >,
  2459. <a href="/en-US/docs/Web/HTML/Element/embed"><code>&lt;embed&gt;</code></a
  2460. >,
  2461. <a href="/en-US/docs/Web/HTML/Element/object"
  2462. ><code>&lt;object&gt;</code></a
  2463. >,
  2464. <a href="/en-US/docs/Web/HTML/Element/script"
  2465. ><code>&lt;script&gt;</code></a
  2466. >,
  2467. <a href="/en-US/docs/Web/HTML/Element/source"
  2468. ><code>&lt;source&gt;</code></a
  2469. >,
  2470. <a href="/en-US/docs/Web/HTML/Element/style"><code>&lt;style&gt;</code></a
  2471. >,
  2472. <a href="/en-US/docs/Web/HTML/Element/menu"><code>&lt;menu&gt;</code></a>
  2473. </td>
  2474. <td>Defines the type of the element.</td>
  2475. </tr>
  2476. <tr>
  2477. <td>
  2478. <code
  2479. ><a
  2480. href="/en-US/docs/Web/HTML/Attributes/usemap"
  2481. class="page-not-created"
  2482. title="This is a link to an unwritten page"
  2483. >usemap</a
  2484. ></code
  2485. >
  2486. </td>
  2487. <td>
  2488. <a href="/en-US/docs/Web/HTML/Element/img"><code>&lt;img&gt;</code></a
  2489. >,
  2490. <a href="/en-US/docs/Web/HTML/Element/input"><code>&lt;input&gt;</code></a
  2491. >,
  2492. <a href="/en-US/docs/Web/HTML/Element/object"
  2493. ><code>&lt;object&gt;</code></a
  2494. >
  2495. </td>
  2496. <td></td>
  2497. </tr>
  2498. <tr>
  2499. <td>
  2500. <code
  2501. ><a
  2502. href="/en-US/docs/Web/HTML/Attributes/value"
  2503. class="page-not-created"
  2504. title="This is a link to an unwritten page"
  2505. >value</a
  2506. ></code
  2507. >
  2508. </td>
  2509. <td>
  2510. <a href="/en-US/docs/Web/HTML/Element/button"
  2511. ><code>&lt;button&gt;</code></a
  2512. >,
  2513. <a href="/en-US/docs/Web/HTML/Element/data"><code>&lt;data&gt;</code></a
  2514. >,
  2515. <a href="/en-US/docs/Web/HTML/Element/input"><code>&lt;input&gt;</code></a
  2516. >, <a href="/en-US/docs/Web/HTML/Element/li"><code>&lt;li&gt;</code></a
  2517. >,
  2518. <a href="/en-US/docs/Web/HTML/Element/meter"><code>&lt;meter&gt;</code></a
  2519. >,
  2520. <a href="/en-US/docs/Web/HTML/Element/option"
  2521. ><code>&lt;option&gt;</code></a
  2522. >,
  2523. <a href="/en-US/docs/Web/HTML/Element/progress"
  2524. ><code>&lt;progress&gt;</code></a
  2525. >,
  2526. <a href="/en-US/docs/Web/HTML/Element/param"
  2527. ><code>&lt;param&gt;</code></a
  2528. >
  2529. </td>
  2530. <td>
  2531. Defines a default value which will be displayed in the element on page
  2532. load.
  2533. </td>
  2534. </tr>
  2535. <tr>
  2536. <td>
  2537. <code
  2538. ><a
  2539. href="/en-US/docs/Web/HTML/Attributes/width"
  2540. class="page-not-created"
  2541. title="This is a link to an unwritten page"
  2542. >width</a
  2543. ></code
  2544. >
  2545. </td>
  2546. <td>
  2547. <a href="/en-US/docs/Web/HTML/Element/canvas"
  2548. ><code>&lt;canvas&gt;</code></a
  2549. >,
  2550. <a href="/en-US/docs/Web/HTML/Element/embed"><code>&lt;embed&gt;</code></a
  2551. >,
  2552. <a href="/en-US/docs/Web/HTML/Element/iframe"
  2553. ><code>&lt;iframe&gt;</code></a
  2554. >, <a href="/en-US/docs/Web/HTML/Element/img"><code>&lt;img&gt;</code></a
  2555. >,
  2556. <a href="/en-US/docs/Web/HTML/Element/input"><code>&lt;input&gt;</code></a
  2557. >,
  2558. <a href="/en-US/docs/Web/HTML/Element/object"
  2559. ><code>&lt;object&gt;</code></a
  2560. >,
  2561. <a href="/en-US/docs/Web/HTML/Element/video"
  2562. ><code>&lt;video&gt;</code></a
  2563. >
  2564. </td>
  2565. <td>
  2566. <p>For the elements listed here, this establishes the element's width.</p>
  2567. <div class="note notecard">
  2568. <p>
  2569. <strong>Note:</strong> For all other instances, such as
  2570. <a href="/en-US/docs/Web/HTML/Element/div"><code>&lt;div&gt;</code></a
  2571. >, this is a legacy attribute, in which case the CSS
  2572. <a href="/en-US/docs/Web/CSS/width"><code>width</code></a> property
  2573. should be used instead.
  2574. </p>
  2575. </div>
  2576. </td>
  2577. </tr>
  2578. <tr>
  2579. <td>
  2580. <code
  2581. ><a href="/en-US/docs/Web/HTML/Element/textarea#attr-wrap"
  2582. >wrap</a
  2583. ></code
  2584. >
  2585. </td>
  2586. <td>
  2587. <a href="/en-US/docs/Web/HTML/Element/textarea"
  2588. ><code>&lt;textarea&gt;</code></a
  2589. >
  2590. </td>
  2591. <td>Indicates whether the text should be wrapped.</td>
  2592. </tr>
  2593. </tbody>