1. SMACSS ( Scalable and Modular Architecture for CSS ) : CSS๋ฅผ [๊ธฐ๋ณธ(base), ๋ ์ด์์(layout), ๋ชจ๋(module), ์ํ(state), ํ ๋ง(theme)]5๊ฐ์ง๋ฅผ ๋ฒ์ฃผํ๋ก ํจํดํ ํ๊ณ ์ ํจ = categorization 1. Base.css [= reset.css] body, p, table, form, fieldset, legend, input, button ... { margin: 0; padding: 0; } 2. layout : ์ฃผ์์(id) + ํ์์์(class) ์ : 2๊ฐ์ ๋ ์ด์ ์คํ์ผ์ ์ฌ์ฉํ ๊ฒฝ์ฐ [ 1.์ ์ฐํ๋ ์ด์์ 2.๊ณ ์ ์ ๋ ์ด์์ ] #header { width: 400px; } #aside { width: 30px; ..