Thuộc tính DOM style outlineOffset trả về và bù trừ đườ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 outlineOffset
object.style.outlineOffset
-
Sửa đổi outlineOffset
object.style.outlineOffset = “value”
Ví dụ
Hãy để chúng tôi xem một ví dụ về thuộc tính style outlineOffset -
<!DOCTYPE html>
<html>
<head>
<style>
body {
color: #000;
background: lightblue;
height: 100vh;
}
p {
background-color: seagreen;
height: 200px;
width: 200px;
outline: 3px solid #000;
border: 3px solid #fff;
margin: 1.5rem auto;
}
.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 outlineOffset Property Example</h1>
<p></p>
<button onclick="add()" class="btn">Add offset</button>
<script>
function add() {
document.querySelector('p').style.outlineOffset = "8px";
}
</script>
</body>
</html> Đầu ra
Điều này sẽ tạo ra kết quả sau -
Nhấp vào “ Thêm bù đắp ”Để thêm đường viền bù đắp xung quanh hộp màu xanh lục.