. 템플릿 설정하기
: HTML 작성시 매번 공통적으로 작성하는 초기 셋팅 값
을 설정 해야한다. VS cdoe 사용자라면 입력할 수 있으니단축기를 기억하자 ! + tab
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
</head>
<body>
</body>
</html>
. CSS 기본 설정값 초기화하기
: 모든 웹브라우저는 기본적으로 설정된 셋팅값
이 있기 때문에 개발자가 의도한대로 디자인이 적용되지 않는 경우가 있다. 그래서 브라우저마다 다르게 적용되 있는 css 기본값을 제거해주는 reset 코드를 초기에 셋팅하는 것이 좋다
. 이 코드는 여러 버전이 있기 때문에 취향에 따라 골라서 사용할 수 있다
.
/* http://meyerweb.com/eric/tools/css/reset/
v2.0 | 20110126
License: none (public domain)
*/
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
margin: 0;
padding: 0;
border: 0;
font-size: 100%;
font: inherit;
vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
display: block;
}
body {
line-height: 1;
}
ol, ul {
list-style: none;
}
blockquote, q {
quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
content: '';
content: none;
}
table {
border-collapse: collapse;
border-spacing: 0;
}
. JavaScript 코드 strict하게 바꾸기
: JavaScript를 공부하다 보면 다른 프로그램에서는 상식적으로 이해할 수 없는 현상들이 일어날 때가 있다
. 그런 상황을 피하기 위해 ECMA Script 5에 추가된 옵션
으로 조금 더 상식적인 범위내에서 코드가 활용
되고 조금 더 효율적으로 운영되어 성능개선까지 기대
할 수 있는 코드가 있다. 아래의 코드를 기억하자!
'use strict';