개발 창고/Web
[CSS] Elemnt 스타일 초기화
로이제로
2022. 10. 7. 10:07
반응형
/* 버튼 초기화 */
button { background: inherit ; border:none; box-shadow:none; border-radius:0; padding:0; overflow:visible; cursor:pointer}
/* 테이블 초기화 */
table { width:100%;border-collapse:collapse;table-layout:fixed;font-size:100%;border-spacing:0 }
/* 리스트 초기화 */
ul, ol { list-style:none }
/* Anchor 태그 초기화 */
a { text-decoration:none;color:#202020; }
a:hover, a:active, a:focus { text-decoration:none;color:#202020; }
반응형