0517 / reset_and_common.css
- reset_and_common.html DOCTYPE html> Document 웹기초 reset 세팅 html, body 에 들어가는 여백 초기화 div, 제목, 내용, 이미지, 리스트 여백, 선 초기화 list의 앞에 들어가는 list-style 제거 a요소의 글씨색, 밑줄 제거 ------------------------------------------------------------------------------- - reset.css @charset "UTF-8"; /* reset.css */ html, body { width:100%; height:100%; margin:0; padding:0; } h1, h2, h3, h4, h5, h6, p,pre,blockquote,address, ..
0512 / float.css (clearfix, clear:both 개념)
@charset "UTF-8"; /* css/src/basic_code_06_float.css */ /* reset.css */ html,body,h1,h2,h3,h4,h5,h6,p,div,ul,li,dl,dt,dd { margin:0; padding:0; } ul,ol,li { list-style:none; } /* */ #wrap { width:800px; height:auto; min-height:900px; margin:auto; background-color: #dfdfdf; } .part { width:90%; height:auto; min-height:300px; margin:auto; margin-bottom:100px; background-color: #faa; } h3 { width:1..