Providing a _____ property value for an interactive HTML element ensures that it is included in the tabbing navigation.

  • display 
  • tabindex 
  • visibility 
  • z-index 
The tabindex attribute in HTML specifies the tab order of an element. A positive value ensures the element is focusable in sequential keyboard navigation. It's particularly important for making interactive elements accessible to keyboard users. If an element should be focusable but not in the sequential keyboard flow, tabindex="0" can be used. 
Add your answer
Loading...