본문 바로가기

명사 美 비격식 (무리 중에서) 아주 뛰어난[눈에 띄는] 사람[것]

HTML·CSS

css 초기화, Eric Meyer’s Reset CSS,HTML5 Doctor Reset stylesheet

웹 페이지의 스타일을 초기화하는 인기있는 코드중 하나이다.

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">