HTML 태그에는 브라우저의 기본 스타일이 있습니다. 예를 들어 p 태그에는 위쪽 및 아래쪽 여백이 있고 Strong 태그에는 굵은 글꼴 스타일이 있습니다. 예를 들어 ul에는 기본적으로 들여쓰기 스타일이 있지만 IE에서는 들여쓰기가 여백으로 구현되지만 Firefox에서는 패딩으로 구현됩니다.
CSS 재설정은 개발 중 브라우저의 기본 스타일을 모두 덮어쓰는 매우 인기 있는 솔루션으로, 다중 브라우저 호환성 문제를 일으키고 개발 효율성에 영향을 미칠 수 있습니다.
CSS 재설정 내용의 일부는 다음과 같습니다
html {color:#000;background:#FFF;}t5 body,div,dl,dt,dd,ul,ol,li, h1,h2,h3,h4,h5,h6, pre,code,form,fieldset,legend, input,textarea,p,blockquote,th,td{margin:0;padding:0;} table {border-collapse:collapse;border-spacing:0;} fieldset,img {border:0;} address,caption,cite,code,dfn,em,strong,th,var {font-style:normal;font-weight:normal;} li {list-style:none;} caption,th {text-align:left;} h1,h2,h3,h4,h5,h6 {font-size:100%;font-weight:normal;} q:before,q:after {content:'';} abbr,acronym {border:0;font-variant:normal;} sup {vertical-align:text-top;} sub {vertical-align:text-bottom;} input,textarea,select {font-family:inherit;font-size:inherit;font-weight:inherit;} input,textarea,select {*font-size:100%;} legend {color:#000;}
관련 권장 사항: "CSS Tutorial"
위 내용은 CSS 재설정은 무엇을 의미합니까?의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!