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

nav-left プロパティをサポートしているブラウザはありません。
定義と用法
nav-left property specifies where to navigate when using the arrow-left navigation key.
| デフォルト値: |
auto |
| 継承: |
no |
| バージョン: |
CSS3 |
| JavaScript構文: |
object.style.navLeft="#div2" |
構文
| nav-left: 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 リファレンス
|