HTML DOM Style right 属性返回并修改 HTML 文档中已定位 HTML 元素的正确位置。
用法
以下是语法 -
1. 返回正确
object.right
2.修改权
object.right = “value”
在这里,价值可以是 -
Sr.No | 价值与解释 |
---|---|
1 | initial 它将此属性值设置为其默认值。 |
2 | inherit 它从其父元素继承此属性值。 |
3 | percentage(%) 它以父元素宽度的百分比定义值。 |
4 | length 它以长度单位定义值。 |
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 right Property Demo</h1>
<div class='square'></div>
<button onclick="set()" class="btn">Set right position</button>
<script>
function set() {
document.querySelector('.square').style.right = "-400px";
}
</script>
</body>
</html>
输出
点击 ”Set right position”按钮设置粉红色方块的正确位置。
相关用法
- HTML DOM Style resize属性用法及代码示例
- HTML DOM Style overflowY属性用法及代码示例
- HTML DOM Style pageBreakAfter属性用法及代码示例
- HTML DOM Style transition属性用法及代码示例
- HTML DOM Style outlineOffset属性用法及代码示例
- HTML DOM Style maxWidth属性用法及代码示例
- HTML DOM Style textAlignLast属性用法及代码示例
- HTML DOM Style borderBottomWidth属性用法及代码示例
- HTML DOM Style width属性用法及代码示例
- HTML DOM Style margin属性用法及代码示例
- HTML DOM Style textDecoration属性用法及代码示例
- HTML DOM Style borderCollapse属性用法及代码示例
- HTML DOM Style backgroundClip属性用法及代码示例
- HTML DOM Style animationIterationCount属性用法及代码示例
- HTML DOM Style animationFillMode属性用法及代码示例
- HTML DOM Style pageBreakInside属性用法及代码示例
- HTML DOM Style paddingTop属性用法及代码示例
- HTML DOM Style textDecorationColor属性用法及代码示例
- HTML DOM Style animation属性用法及代码示例
- HTML DOM Style transitionDelay属性用法及代码示例
注:本文由纯净天空筛选整理自AmitDiwan大神的英文原创作品 HTML DOM Style right Property。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。