id

차노·2023년 8월 9일
0

The HTML id attribute is used to specify a unique id for an HTML element.

HTML id 속성은 HTML 요소에 고유의 id를 부여하는 데 사용된다.

The id attribute is used to point to a specific style declaration in a style sheet.

id 속성은 스타일 시트에서 특정 스타일 정의를 가리키는 데 사용된다.

It is also used by JavaScript to access and manipulate the element with the specific id.

자바스크립트를 이용해서 특정 id를 가지고 요소에 접근하고 조작할 수 있다.

The syntax for id is: write a hash character (#), followed by an id name. Then, define the CSS properties within curly braces {}.

id의 신텍스는 해쉬 캐릭터 #을 사용한다. 중괄호 안에서 css 특징을 정의한다

id attribute cannot start with number and must not contain spaces(tabs).

Difference Between Class and ID

A class name can be used by multiple HTML elements, while an id name must only be used by one HTML element within the page.

class는 html 요소에 다중 지정할 수 있지만, id는 각 엘러먼트에 고유값을 주기 때문에, 다중 속성 지정이 가능하지 않다

JavaScript can access an element with a specific id with the getElementByid() method.

#unique

Reference

0개의 댓글