웹 페이지의 스타일을 초기화하는 인기있는 코드중 하나이다.
Eric Meyer’s Reset CSS
HTML5 Doctor Reset stylesheet
http://meyerweb.com/eric/tools/css/reset/reset.css
http://html5doctor.com/wp-content/themes/html5doctor-2012/style.css
위 경로로 들어가 코드를 직접 복사해 css파일에 넣어놓은 뒤 사용해도되지만,
link태그를 이용하여 연결해 사용할 수도 있다.
<!-- Eric Meyer’s Reset CSS -->
<link rel="stylesheet" href="http://meyerweb.com/eric/tools/css/reset/reset.css">
<!-- HTML5 Doctor Reset stylesheet -->
<link rel="stylesheet" href="http://html5doctor.com/wp-content/themes/html5doctor-2012/style.css">
'HTML·CSS' 카테고리의 다른 글
<br>치기 귀찮을때, white-space 자동줄바꿈 (0) | 2023.07.18 |
---|---|
로고png 블랙/화이트로 만들기, CSS filter (0) | 2023.07.12 |
top버튼, only css 최소코드 (0) | 2023.04.17 |
preload 음악/비디오 재생전 로딩속성 (0) | 2023.04.12 |
poster, 비디오 준비 중일 때 미리보기 이미지 (0) | 2023.04.12 |