
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 |