카테고리 없음

HTML/CSS) ID와 CLASS의 차이

행복회로 풀가동 2022. 6. 11. 22:15
  ID CLASS
정의 한 페이지에 하나만 정의 한 페이지에 반복적으로 사용되는 스타일
선언자 # .
예시 <table id="table"> 
  <thead>
    <tr>
      <th></th>
    </tr>
  </head>
  <tbody>
    <tr>
      <td></td>
    </tr>
  </tbody>
</table>

#table
<table class="table"> 
  <thead>
    <tr>
      <th></th>
    </tr>
  </head>
  <tbody>
    <tr>
      <td></td>
    </tr>
  </tbody>
</table>

.table