html5 1day


html5 1day

최저 해상도 : 1024 모니터(종이 996px) 최적 해상도 : 1280 모니터(1256px) 베스킨의 경우 : 최저해상도(995), 최적(1259) div(의미가 없는 박스. 의미를 부여해서 쓰는 박스) html5 (html4-a+b) CSS <!DOCTYPE HTML> <html> <head> <meta charset="utf-8"> <title>Untitled Document</title> <style> #header{background:#09F; width:996px; height:100px;} #contents{ background:#333; width:996px;} #footer{ background:#963; width:996px; height:100px} </style> </head> <body> <div id="header">머리말</div> <div id="contents">본문</div> <div id="footer">꼬리말</div> </body> </html...


#IT·컴퓨터

원문링크 : html5 1day