CLASS
![[html] class와 id](https://img1.daumcdn.net/thumb/R750x0/?scode=mtistory2&fname=https%3A%2F%2Fblog.kakaocdn.net%2Fdn%2FlmI4I%2FbtrLD0mj0bO%2FZ6X49xjkcEBkzliNcPnkr0%2Fimg.png)
[html] class와 id
html에 이름을 주는 요소에는 class와 id가 있다. 이 둘은 비슷한듯 다르다. 그 차이에 대해 알아보자. class /* css */ .big-blue-text { color: blue; font-size: 48px; } First Second Third 태그에 big-blue-text라는 클래스를 붙여주었다. 이것을 css에서 불러올 땐, '. + 클래스이름'을 써주면된다. id /* css */ #favorite-text { color: blue; font-size: 48px; } First Second Third 태그에 favorite-text라는 아이디를 붙여주었다. 이것을 css에서 불러올 땐, '# + 아이디이름'을 써주면된다. class와 id의 차이 같은 클래스 이름은 여러 요소가 ..