当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


CSS nav-up用法及代码示例


CSS nav-up属性用于在键盘上导航键。此属性定义了用户使用导航键进行导航时的焦点。 nav-up可以与nav-right,nav-down和nav-left属性一起使用。

用法:

 nav-up:auto | id | target-name | initial | inherit;

属性:


  • auto:这是默认值,浏览器在此处定义要导航的元素。
  • <id>:它定义了要导航的ID。
  • <target-name>:它定义了要导航的目标。
  • initial:这是默认值。
  • inherit:它从其父元素继承。

注意:此属性仅支持Opera 12.0。
下面的示例说明了该属性:

范例:1

<!DOCTYPE html>  
<html>  
  
<head>  
    <title>CSS nav-up Property</title>  
    <link rel="stylesheet" href=  
"https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">  
    <style>  
        button {  
            position:absolute;  
        }  
          
        h1 {  
            color:green;  
        }  
          
        button {  
            background-color:#80ff80;  
            nav-right:auto;  
            nav-left:auto;  
            nav-down:auto;  
            nav-up:auto;  
            border-radius:25px;  
            font-size:20px;  
        }  
          
        #Geeks1 {  
            top:35%;  
            left:43%;  
            nav-index:1;  
        }  
          
        #Geeks2 {  
            top:50%;  
            left:65%;  
            nav-index:2;  
        }  
          
        #Geeks3 {  
            top:65%;  
            left:43%;  
            nav-index:3;  
        }  
          
        #Geeks4 {  
            top:50%;  
            left:20%;  
            nav-index:4;  
        }  
    </style>  
</head>  
  
<body>  
    <center>  
        <h1>GeeksforGeeks</h1>  
        <h4>CSS nav-up Property</h4>  
        <p>  
            Press the <samp>Shift</samp>  
        key while navigating with the arrow keys.  
        </p>  
    </center>  
    <button id="Geeks1">Button  
    <i class="fa fa-arrow-circle-up"></i>  
    </button>  
    <button id="Geeks2">Button  
    <i class="fa fa-arrow-circle-right"></i>  
    </button>  
    <button id="Geeks3">Button  
    <i class="fa fa-arrow-circle-down"></i>  
    </button>  
    <button id="Geeks4">  
    <i class="fa fa-arrow-circle-left"></i>  
    Button  
    </button>  
  
    <div>  
  
    </div>  
</body>  
  
</html> 

输出:

支持的浏览器:CSS nav-up属性不支持主要的浏览器

浏览器特定的扩展程序:CSS nav-up性能具有浏览器特定的扩展程序。

  • Google Chrome -webkit-
  • Internet Explorer -ms-
  • Firefox -moz-
  • Safari -webkit-
  • Opera -webkit-


相关用法


注:本文由纯净天空筛选整理自skyridetim大神的英文原创作品 CSS | nav-up property。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。