CSS |导航权限属性
CSS 导航-右侧属性用于从键盘导航导航键。此属性定义用户使用导航键导航时的焦点位置。右导航可以与左导航、上导航和下导航属性一起使用。
语法:
nav-right: auto | id | target-name | initial | inherit;
属性:
- auto: 默认情况下,浏览器定义导航哪个元素。
- < id > : 它定义了要导航的 id。
- <目标-名称> : 定义要导航的目标。
- 初始值:为默认值。
- inherit: 从其父元素继承。
注意:这个属性只支持 Opera 12.0。
以下示例说明了属性: 示例 1:
<!DOCTYPE html>
<html>
<head>
<title>CSS nav-right 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-right 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">Button
<i class="fa fa-arrow-circle-left"></i>
</button>
<div>
</div>
</body>
</html>
输出:
支持的浏览器:主要浏览器不支持 CSS 导航权限属性 T5】浏览器特定扩展:CSS 导航权限属性有浏览器特定扩展。
- 谷歌 Chrome -webkit-
- Internet Explorer -ms-
- Firefox -moz-
- Safari -webkit-
- Opera -webkit-
版权属于:月萌API www.moonapi.com,转载请注明出处