Re: [csswg-drafts] Please add "tab-index" to CSS specification

The more appropriate tab order in this case will be:
div, #d, #e #b, #c, #a
maybe  tab-index-group: <number> (default 0: first group) will be better for grouping.
<style>
    #a { tab-index:0; }
    div { tab-index-group: 1; tab-index:none;}
    #b, #c { tab-index: 2; }
    div #d { tab-index: 1; }
    div #e { tab-index: 0; }
</style>

("tab-" may by changed to "nav-". It will be still compatible with tabindex in HTML. 

-- 
GitHub Notification of comment by Nadya678
Please view or discuss this issue at https://github.com/w3c/csswg-drafts/issues/1748#issuecomment-326152980 using your GitHub account

Received on Thursday, 31 August 2017 00:10:46 UTC