DOM 스타일 outlineStyle 속성은 HTML 문서에서 요소 주위의 윤곽선 스타일을 반환하고 수정합니다.
구문
다음은 구문입니다 -
-
OutlineStyle 반환
object.style.outlineStyle
-
OutlineStyle 수정
object.style.outlineStyle = “value”
예시
스타일 개요 스타일 속성의 예를 살펴보겠습니다 -
<!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 outlineStyle Property Example</h1>
<p></p>
<button onclick="add()" class="btn">Add outline</button>
<script>
function add() {
document.querySelector('p').style.outlineStyle = "dashed";
}
</script>
</body>
</html> 출력
이것은 다음과 같은 출력을 생성합니다 -

"개요 추가를 클릭합니다. ” 버튼을 눌러 녹색 상자 주변의 윤곽선 스타일을 변경합니다.
