Computer >> Máy Tính >  >> Lập trình >> HTML

HTML DOM Style marginLeft Thuộc tính


Thuộc tính HTML DOM style marginLeft trả về và sửa đổi lề trái của một phần tử trong tài liệu HTML.

Cú pháp

Sau đây là cú pháp -

  • Lợi nhuận hoàn lạiLeft

object.style.marginLeft
  • Sửa đổi marginLeft

object.style.marginLeft = “value”

Ví dụ

Hãy để chúng tôi xem một ví dụ về thuộc tính style marginLeft -

<!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 marginLeft 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.marginLeft = "50px";
   }
</script>
</body>
</html>

Đầu ra

Điều này sẽ tạo ra kết quả sau -

HTML DOM Style marginLeft Thuộc tính

Nhấp vào “ Thêm ký quỹ ”Để thêm lề trái vào phần tử đoạn văn -

HTML DOM Style marginLeft Thuộc tính