Data hosted with ♥ by Pastebin.com - Download Raw - See Original
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <meta charset="UTF-8">
  5. <title>Insert title here</title>
  6. <style type="text/css">
  7.     p {
  8.         background-color: green;
  9.         width: 300px;
  10.         margin: 10px;
  11.     }
  12.    
  13.     .float {
  14.         float: left;
  15.     }
  16. </style>
  17. </head>
  18. <body>
  19.     <h2>clear: both 사용 전</h2>
  20.     <p class="float">
  21.         float:left를 적용한 p태그<br/>
  22.         float:left를 적용한 p태그<br/>
  23.         float:left를 적용한 p태그<br/>
  24.     </p>
  25.     <p style="background-color: blue;">
  26.         clear: both를 적용하지 않은 p태그<br/>
  27.         clear: both를 적용하지 않은 p태그<br/>
  28.         clear: both를 적용하지 않은 p태그<br/>
  29.     </p>
  30.    
  31.     <h2>clear: both 사용 후</h2>
  32.     <p class="float">
  33.         float:left를 적용한 p태그<br/>
  34.         float:left를 적용한 p태그<br/>
  35.         float:left를 적용한 p태그<br/>
  36.     </p>
  37.     <div style="clear: both;"></div>
  38.     <p style="background-color: blue;">
  39.         clear: both를 적용한 p태그<br/>
  40.         clear: both를 적용한 p태그<br/>
  41.         clear: both를 적용한 p태그<br/>
  42.     </p>
  43. </body>
  44. </html>