플로팅1


플로팅1

<!DOCTYPE HTML> <html> <head> <meta charset="utf-8"> <title>플로팅연구01</title> <style> div{ outline: 1px #f00 dotted;} .contain{ padding:10px; outline-color:#00F;} .one, .two, .three{ width:100px; height:100px; float:right} /*.two{ width:100px; height:100px; float:left} .three{ width:100px; height:100px; float:left}*/ </style> </head> <body> <div class="contain"> <div class="one">one</div> <div class="two">two</div> <div class="three">three</div> </div> </body> </html> <!DOCTYPE HTML> <html> <head>...



원문링크 : 플로팅1