Menu
HTML Fundamentals

Global Attributes

Attributes (id, class, style, title, lang, hidden, tabindex…) usable on any element.

1Common Global Attributes

Global attributes work on every HTML element. They cover identity, styling, accessibility, and behavior.

Example Code
<div id="main"
     class="container card"
     title="Tooltip text"
     lang="en"
     dir="ltr"
     tabindex="0"
     hidden
     contenteditable="true"
     data-user-id="42">
  Editable content
</div>

Finished reading?

Mark this topic as complete to track progress.