当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


HTML DOM Style margin属性用法及代码示例


DOM 样式的边距属性返回并修改 HTML 文档中元素的边距。

用法

以下是语法 -

  • 返还保证金

object.style.margin
  • 修改边距

object.style.margin = “value”

示例

让我们看一个样式边距属性的例子 -

<!DOCTYPE html>
<html>
<head>
<style>
   body {
      color:#000;
      background:lightblue;
      height:100vh;
   }
   p {
      border:2px solid #fff;
   }
   .btn {
      background:#db133a;
      border:none;
      height:2rem;
      border-radius:2px;
      width:40%;
      display:block;
      color:#fff;
      outline:none;
      cursor:pointer;
   }
</style>
</head>
<body>
<h1>DOM Style margin Property Example</h1>
<p>Hi! I'm awesome paragraph with some random text.
   Hi! I'm awesome paragraph with some random text.
   Hi! I'm awesome paragraph with some random text.
   Hi! I'm awesome paragraph with some random text.
</p>
<button onclick="add()" class="btn">Add margin</button>
<script>
   function add() {
      document.querySelector('p').style.margin = "20px 30px";
   }
</script>
</body>
</html>

输出

这将产生以下输出 -

点击 ”Add margin”按钮为段落元素添加边距 -

相关用法


注:本文由纯净天空筛选整理自AmitDiwan大神的英文原创作品 HTML DOM Style margin Property。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。