단순 3단 01


단순 3단 01

<!DOCTYPE HTML> <html> <head> <meta charset="utf-8"> <title>단순3단 01</title> <style> body{min-width:500px;} div{ outline:dotted 1px #f00;} .column{ float:left;} .three{width:100px;} .one{ width:250px;} .two{ width:150px} </style> </head> <body> <div class="column three">three</div> <div class="column one">one</div> <div class="column two">two</div> </body> </html> * body{min-width:500px;} 인터넷 브라우저의 크기가 최소화 되도 형태 유지 시켜줌...



원문링크 : 단순 3단 01