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

HTML DOM Style outlineColor thuộc tính


Thuộc tính DOM style outlineColor trả về và sửa đổi màu của đường viền xung quanh một phần tử trong tài liệu HTML.

Cú pháp

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

  • Trả lại phác thảo Màu sắc

object.style.outlineColor
  • Sửa đổi màu viền

object.style.outlineColor = “color”

Ví dụ

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

<!DOCTYPE html>
<html>
<head>
<style>
   body {
      color: #000;
      background: lightblue;
      height: 100vh;
   }
   p {
      background-color: seagreen;
      height: 200px;
      width: 200px;
      outline: 2px solid #000;
   }
   .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 outlineColor Property Example</h1>
<p></p>
<button onclick="add()" class="btn">Add outline</button>
<script>
   function add() {
      document.querySelector('p').style.outlineColor = "#db133a";
   }
</script>
</body>
</html>

Đầu ra

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

HTML DOM Style outlineColor thuộc tính

Nhấp vào “ Thêm đường viền ”Để thay đổi màu của đường viền xung quanh hộp màu xanh lục.

HTML DOM Style outlineColor thuộc tính