The One True Layout 01


The One True Layout 01

<!DOCTYPE HTML> <html> <head> <meta charset="utf-8"> <title>The One True Layout 01</title> <style> body{ min-width:500px;} .column{float:left; outline:1px #f00 dotted;} .one{ width:250px;} .two{ width:150px;} .three{width:100px;} </style> </head> <body> <div class="column one">one</div> <div class="column two">two</div> <div class="column three">three</div> </body> </html> 1 2 3 번 박스에서 3번 박스의 공간 만큼 1 2 번을 밀어내고 3번을 처음으로 오게 함. 3 1 2 순서로 됨 <!DOCTYPE HTML> <html> <head> <meta charset="utf-8"> <title...


#IT·컴퓨터

원문링크 : The One True Layout 01