CSS3 nav-down プロパティ
完全な CSS3 リファレンス
例
Specify where to navigate when using the arrow-down and arrow-up navigation
keys:
button#b1
{
nav-index:1;
nav-down:#b2;
nav-up:#b2;
}
button#b2
{
nav-index:2;
nav-down:#b1;
nav-up:#b1;
} |
|
ブラウザ・サポート

nav-down プロパティをサポートしているブラウザはありません。
定義と用法
nav-down property specifies where to navigate when using the arrow-down navigation key.
| デフォルト値: |
auto |
| 継承: |
no |
| バージョン: |
CSS3 |
| JavaScript構文: |
object.style.navDown="#div2" |
構文
| nav-down: auto|id|target-name|inherit; |
| 値 |
説明 |
| auto |
The browser determines which element to navigate to |
| id |
Specifies the id of the element to navigate to |
| target-name |
Specifies the target frame to navigate to |
| inherit |
Specifies that the value of the nav-down property should be inherited
from the parent element |
完全な CSS3 リファレンス
|