HTML DOM Style top 属性返回并修改 HTML 文档中已定位 HTML 元素的顶部位置。
用法
以下是语法 -
1. 返回顶部
object.top
2.修改顶部
object.top = “value”
在这里,价值可以是 -
Sr.No | 价值与解释 |
---|---|
1 | initial 它将此属性值设置为其默认值。 |
2 | inherit 它从其父元素继承此属性值。 |
3 | percentage(%) 它以父元素宽度的百分比定义值。 |
4 | length 它以长度单位定义值 top。 |
5 | auto 它让浏览器设置顶部位置的值。 |
让我们看一个 HTML DOM 样式顶部属性的例子 -
示例
<!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>
输出
点击 ”Set top position”按钮设置粉红色方块的顶部位置。
相关用法
- HTML DOM Style transition属性用法及代码示例
- HTML DOM Style textAlignLast属性用法及代码示例
- HTML DOM Style textDecoration属性用法及代码示例
- HTML DOM Style textDecorationColor属性用法及代码示例
- HTML DOM Style transitionDelay属性用法及代码示例
- HTML DOM Style textDecorationLine属性用法及代码示例
- HTML DOM Style textAlign属性用法及代码示例
- HTML DOM Style transitionDuration属性用法及代码示例
- HTML DOM Style transitionTimingFunction属性用法及代码示例
- HTML DOM Style transform属性用法及代码示例
- HTML DOM Style transformStyle属性用法及代码示例
- HTML DOM Style transformOrigin属性用法及代码示例
- HTML DOM Style textDecorationStyle属性用法及代码示例
- HTML DOM Style transitionProperty属性用法及代码示例
- HTML DOM Style textOverflow属性用法及代码示例
- HTML DOM Style textIndent属性用法及代码示例
- HTML DOM Style textShadow属性用法及代码示例
- HTML DOM Style textTransform属性用法及代码示例
- HTML DOM Style tableLayout属性用法及代码示例
- HTML DOM Style tabSize属性用法及代码示例
注:本文由纯净天空筛选整理自AmitDiwan大神的英文原创作品 HTML DOM Style top Property。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。