영어 [tɑ:p]

n.(상자) 표지, 상단

adj. of

vt.to to the top of...; 리드

vi.3인칭 단수: tops 현재 분사; : topping 과거 시제: topped 과거 분사: topped

자바스크립트 상단 속성 통사론

기능: 위치가 지정된 요소의 상단 여백 경계와 포함 블록의 상단 경계 사이의 오프셋을 설정합니다.

구문: ​​Object.style.top=auto|%|length

참고: "position" 속성의 값이 "static"인 경우 "top" 속성 설정은 효과가 없습니다.

자바스크립트 상단 속성 예

<html>
<head>
<style type="text/css">
input
{
position:absolute;
}
</style>
<script type="text/javascript">
function setTopEdge()
{
document.getElementById("b1").style.top="100px";
}
</script>
</head>
<body>

<input type="button" id="b1" onclick="setTopEdge()"
value="Set top edge to 100 px" />

</body>
</html>

인스턴스 실행 »

온라인 인스턴스를 보려면 "인스턴스 실행" 버튼을 클릭하세요