본문으로 건너뛰기
  1. Tags/

Javascript

2024

Javascript Custom HTMLElement 2
·3 분· loading · loading
Yna
Techtopic CSS Html Javascript
Custom HTMLElement # 이번 포스팅에선 Custom HTMLElement의 스타일을 변경하는 방법과 만든 Custom HTMLElement를 사용한 예제를 간략하게 포스팅 하겠습니다. CSS 적용하기 # const styleText = ` div { border : 1px solid; margin: 15px; width : 200px; height: 240px; }`; class CustomTag extends HTMLElement { constructor() { .