Computer >> 컴퓨터 >  >> 프로그램 작성 >> JavaScript

JavaScript로 요소 주변의 윤곽선 색상을 설정하는 방법은 무엇입니까?


윤곽선 색상을 설정하려면 outlineColor를 사용하세요. 재산. 다음 코드를 실행하여 JavaScript로 요소 주변의 윤곽선 색상을 설정할 수 있습니다.

예시

<!DOCTYPE html>
<html>
   <head>
      <style>
         #box {
            width: 450px;
            background-color: orange;
            border: 3px solid red;
         }
      </style>
   </head>
   <body>
      <p>Click below to add Outline Color.</p>
      <div id="box">
         <p>This is a div. This is a div. This is a div. This is a div. This is a div.</p>
         <p>This is a div. This is a div. This is a div. This is a div. This is a div.</p>
         <p>This is a div. This is a div. This is a div. This is a div. This is a div.</p>
      </div>
      <br>
      <button type="button" onclick="display()">Set Outline Color</button>
      <br>
      <script>
         function display() {
            document.getElementById("box").style.outline = "thick solid";
            document.getElementById("box").style.outlineColor = "#5F5F5F";
         }
      </script>
   </body>
</html>