플로트 해제01(clear fix)


플로트 해제01(clear fix)

<!DOCTYPE HTML> <html> <head> <meta charset="utf-8"> <title>플로트 해제01(클리어 픽스)</title> <style> .container{ outline:1px #00f dotted; padding:10px; background:#ffcccc;} .column{ width:100px; height:100px; outline:1px #f00 dotted; float:left;} .clearfix{clear:left; display:block;} </style> </head> <body> <div class="container"> <div class="column one">one</div> <div class="column two">two</div> <div class="column three">three</div> <b class="clearfix"></b> </div> </body> </html> * 필요이상으로 div를 많이 쓰는 걸...



원문링크 : 플로트 해제01(clear fix)