Interactive Elements Flashcards
Interactive Element
HTML offers a selection of elements which help to create interactive user interface objects.
details
The HTML element creates a disclosure widget in which information is visible only when the widget is toggled into an “open” state. A summary or label must be provided using the summary element.
dialog
The HTML element represents a dialog box or other interactive component, such as a dismissible alert, inspector, or subwindow.
menu
The HTML element is a semantic alternative to ul. It represents an unordered list of items (represented by li elements), each of these represent a link or other command that the user can activate.
summary
The HTML element specifies a summary, caption, or legend for a details element’s disclosure box. Clicking the element toggles the state of the parent element open and closed.