css nav-up属性怎样运用?
作用:nav-up 属性划定当运用 nav-up 导航键时,向那边举行导航。
语法:
nav-up: auto|id|target-name|inherit;
申明:
auto: 浏览器决议导航到哪一个元素。
id :划定被导航元素的 id。
target-name:划定被导航的目的框架。
inherit:划定应从父元素继续 nav-up 属性的值。
注:现在只要 Opera 支撑 nav-up 属性。
css nav-up属性运用示例
<!DOCTYPE html> <html> <head> <style> button { position: absolute; } 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; } </style> </head> <body> <button id="b1">Button 1</button> <button id="b2">Button 2</button> <button id="b3">Button 3</button> <button id="b4">Button 4</button> <p><b>解释:</b>现在只要 Opera 支撑 nav-* 属性。当您运用方向键导航时,请同时按下 Shift 键。</p> </body> </html>
效果图:
以上就是本篇文章的全部内容,愿望能对人人的进修有所协助。更多精彩内容人人能够关注ki4网相干教程栏目!!!
以上就是nav-up属性怎样运用的细致内容,更多请关注ki4网别的相干文章!