* Division : 웹사이트의 레이아웃, 틀을 만들 때 논리적 구분을 위해 사용 > 테이블보다 유용하게 사용 가능! - div는 'block 요소' span, image는 'in-line' 요소 - div 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 css07.html div{ width: 300px; height: 300px; background-color: rgb(255, 137, 157); } #blueDiv{ background-color: rgb(79, 79, 255); } 금요일 BLUE Colored by Color Scripter cs - [응용] 영화 목록 만들기 1 2 3 4 5 6 7 8 9 10 11 12 ..