# tabindex-no-positive
Avoid positive tabIndex property values to synchronize the flow of the page with keyboard tab order.
#### References
1. [AX_FOCUS_03](https://github.com/GoogleChrome/accessibility-developer-tools/wiki/Audit-Rules#ax_focus_03)
## Rule details
This rule takes no arguments.
### Succeed
```jsx
foo
bar
baz
```
### Fail
```jsx
foo
bar
baz
never really sure what goes after baz
```