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

HTML DOM HR 개체

<시간/>

HTML DOM HR 개체는 HTML 문서의


요소를 나타냅니다.

hr 객체 생성-

구문

다음은 구문입니다 -

document.createElement(“HR”);

hr 개체의 예를 살펴보겠습니다-

예시

<!DOCTYPE html>
<html>
<style>
   body {
      text-align: center;
      background-color: #fff;
      color: #0197F6;
   }
   h1 {
      color: #23CE6B;
   }
   .btn {
      background-color: #fff;
      border: 2px solid #0197F6;
      height: 2rem;
      width: 40%;
      margin: 2rem auto;
      display: block;
      color: #0197F6;
      outline: none;
      cursor: pointer;
      border-radius: 20px;
   }
   hr {
      border-color: #db133a;
   }
</style>
<body>
<h1>DOM hr Object Demo</h1>
<button onclick="createHr()" class="btn">Create a hr object</button>
<script>
   function createHr() {
      var insElement = document.createElement("HR");
      document.body.appendChild(insElement);
   }
</script>
</body>
</html>

출력

HTML DOM HR 개체

"hr 개체 만들기" 버튼을 클릭하여 hr 개체를 만듭니다.

HTML DOM HR 개체