ウエン流ECサイト構築用CSS初期化!

備忘録です。
Eric Meyer氏のReset Reloadedを元に、
ウエン流にカスタマイズ!
カスタマイズ箇所は文字幅と
table定義かな。

筆者は若干tableに依存(気味なだけ)しているので、
Eric Meyer氏のtable初期化が使いにくくて仕方がなかった。


まぁこんな感じっす。

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, font, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li, img,
fieldset, form, label, legend,
caption, tbody, tfoot, thead,{
	margin: 0;
	padding: 0;
	border: 0;
	outline: 0;
	font-size: 100%;
	vertical-align: baseline;
	background: transparent;
}
body {
	line-height: 140%;
}
ol, ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
:focus {
	outline: 0;
}
ins {
	text-decoration: none;
}
del {
	text-decoration: line-through;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
	margin:0;
	padding:0;
}