- From: Nadya678 via GitHub <sysbot+gh@w3.org>
- Date: Thu, 31 Aug 2017 00:10:50 +0000
- To: public-css-archive@w3.org
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