css3 nav-right 속성은 오른쪽 화살표 탐색 키를 사용할 때 탐색할 위치를 지정하는 데 사용되는 CSS3 속성입니다. 구문은 "nav-right: auto|id|target-name;"이며, 매개변수 "auto"는 브라우저를 의미합니다. 탐색할 요소를 결정합니다.
nav-right 속성은 오른쪽 화살표 탐색 키를 사용할 때 탐색할 위치를 지정하는 데 사용되는 CSS3 속성입니다.
권장: "css3 비디오 튜토리얼"
CSS3 nav-right attribute
기능: nav-right 속성은 nav-right 탐색 키를 사용할 때 탐색할 위치를 지정합니다.
기본 구문:
nav-right: auto|id|target-name;
auto: 탐색할 요소를 브라우저가 결정합니다.
id: 탐색할 요소의 ID를 지정합니다.
target-name: 대상 프레임에 대한 탐색을 지정합니다.
참고: 현재 Opera에서만 nav-right 속성을 지원합니다.
CSS3 nav-right 속성 사용 예
<!DOCTYPE html> <html> <head> <meta charset="utf-8"> <title>php中文网(php.cn)</title> <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">按钮1</button> <button id="b2">按钮2</button> <button id="b3">按钮3</button> <button id="b4">按钮4</button> <p><b>注释:</b>目前只有 Opera 支持 nav-* 属性。当您使用方向键导航时,请同时按下 Shift 键。</p> </body> </html>
위는 이 글의 전체 내용이므로, 모든 분들의 학습에 도움이 되기를 바랍니다.
위 내용은 CSS3 nav-right 속성을 사용하는 방법은 무엇입니까?의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!