Coding With Fun
Home Docker Django Node.js Articles Python pip guide FAQ Policy

CSS3 nav-down property


May 05, 2021 CSS Reference Manual


Table of contents


CSS3 nav-down property


Specify where to navigate when using arrow keys:

button#b1
{
top:20%; left:25%;
nav-index:1;
nav-right:#b2; nav-left:#b4;
nav-down:#b2; nav-up:#b4;
}

button#b2
{
top:40%; left:50%;
nav-index:2;
nav-right:#b3; nav-left:#b1;
nav-down:#b3; nav-up:#b1;
}

button#b3
{
top:70%; left:25%;
nav-index:3;
nav-right:#b4; nav-left:#b2;
nav-down:#b4; nav-up:#b2;
}

button#b4
{
top:40%; left:0%;
nav-index:4;
nav-right:#b1; nav-left:#b3;
nav-down:#b1; nav-up:#b3;
}

Try it out . . .

Browser support

The numbers in the table support the first browser version number of the property.

The number immediately before -webkit-, -ms- or -moz- is the first browser version number that supports the prefix property.

Attributes
nav-down Incompatible Incompatible Incompatible Incompatible Supported in Opera 11.5-12.
Not compatible with updated version of browser

Description of property definition and use

The nav-down property specifies where to navigate when nav-down navigation keys are used.

Default: auto
Inherited: no
Version: CSS3
JavaScript syntax: object .style.navDown="#div2"


Grammar

nav-down: auto| id | target-name |inherit;

Value Description
auto The browser decides which element to navigate to.
Id Specifies the id of the element being navigated.
target-name Specify the target framework to be navigated.
inherit Specifies that the value of the nav-down property should be inherited from the parent element.