HTML DOM 스타일 top 속성은 HTML 문서에서 배치된 HTML 요소의 상단 위치를 반환하고 수정합니다.
구문
다음은 구문입니다 -
1. 맨 위로 돌아가기
object.top
2. 상단 수정
object.top = “value”
여기서 값은 -
일 수 있습니다.Sr.No | 가치 및 설명 |
---|---|
1 | 초기 이 속성 값을 기본값으로 설정합니다. |
2 | 상속 부모 요소에서 이 속성 값을 상속합니다. |
3 | 백분율(%) 상위 요소의 너비에 대한 백분율 값을 정의합니다. |
4 | 길이 길이 단위로 값 상단을 정의합니다. |
5 | 자동 브라우저에서 최상위 위치 값을 설정할 수 있습니다. |
HTML DOM Style top Property의 예를 살펴보겠습니다 -
예시
<!DOCTYPE html> <html> <style> body { color: #000; height: 100vh; } .btn { background: #db133a; border: none; height: 2rem; border-radius: 2px; width: 40%; display: block; color: #fff; outline: none; cursor: pointer; margin: 1rem 0; } .square { width: 100px; height: 100px; background: #db133a6b; position: relative; } .show { font-size: 1.2rem; margin: 1rem 0; } </style> <body> <h1>DOM Style top Property Demo</h1> <div class='square'></div> <button onclick="set()" class="btn">Set top position</button> <script> function set() { document.querySelector('.square').style.top = "200px"; } </script> </body> </html>
출력
'최상위 게재순위 설정을 클릭합니다. ” 버튼을 눌러 분홍색 사각형의 상단 위치를 설정합니다.