element 가 딱 적절해보임...ㅋㅋㅋ
DOM의 일부를 영단어로 표현할 때, 다음과 같은 용어를 사용할 수 있습니다.
Node (노드)
"Each element in the DOM is a node." (DOM의 각 요소는 노드입니다.) Element (요소)
"The <div> tag is an element in the DOM." ( <div> 태그는 DOM의 요소입니다.) Child / Parent / Sibling (자식 / 부모 / 형제)
"This node is a child of the body element." (이 노드는 <body> 요소의 자식입니다.) Attribute (속성)
"The 'href' attribute in an <a> tag specifies the link destination."<a> 태그의 'href' 속성은 링크 목적지를 지정합니다.) Text Node (텍스트 노드)
"The text inside an <h1> tag is stored as a text node."<h1> 태그 내부의 텍스트는 텍스트 노드로 저장됩니다.) 즉, "DOM의 일부"를 영어로 표현할 때 문맥에 따라 "a part of the DOM", "a node in the DOM", 또는 "an element in the DOM" 등을 사용할 수 있습니다. 😊