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-
相關用法
- CSS transition-property用法及代碼示例
- CSS top屬性用法及代碼示例
- CSS nav-down用法及代碼示例
- CSS all屬性用法及代碼示例
- CSS right屬性用法及代碼示例
- CSS nav-right用法及代碼示例
- CSS zoom屬性用法及代碼示例
- CSS columns屬性用法及代碼示例
- CSS nav-left用法及代碼示例
- CSS will-change用法及代碼示例
- CSS nav-index用法及代碼示例
- CSS clear屬性用法及代碼示例
- CSS clip屬性用法及代碼示例
- CSS resize屬性用法及代碼示例
- CSS align-self用法及代碼示例
注:本文由純淨天空篩選整理自skyridetim大神的英文原創作品 CSS | nav-up property。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。