플로트 해제02(다중 플로트)


플로트 해제02(다중 플로트)

<!DOCTYPE HTML> <html> <head> <meta charset="utf-8"> <title>플로트 해제02(다중 플로트)</title> <style> .container{ outline:1px #00f dotted; padding:10px; background:#ffcccc;} .column{outline:1px #f00 dotted; float:left; padding:10px;} .one{ width:100px; height:100px;} .two{ outline-width:2px;} .a, .b{width:100px; height:100px;} </style> </head> <body> <div class="container"> <div class="column one">one</div> <div class="column two"> <div class="column a">a</div> <div class="column b">b</div> </div> </div>...



원문링크 : 플로트 해제02(다중 플로트)