Guest User

Untitled

a guest
Jul 19th, 2018
75
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 0.87 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html>
  3.     <head>
  4.         <title>pozycjonowanie</title>
  5.         <meta http-equiv="Content-type" content="text/html; charset=utf-8">
  6.         <style type="text/css"><!--
  7.             * {
  8.                 margin: 0;
  9.                 padding: 0;
  10.             }
  11.             div {
  12.                 margin: 1px;
  13.                 width: 100px;
  14.                 height: 100px;
  15.             }
  16.         --></style>
  17.     </head>
  18.     <body>
  19.         <div style="width: 410px">
  20.             <div
  21.                 style="background-color: red; float: left;"
  22.             ></div>
  23.             <div
  24.                 style="background-color: green; float: right;"
  25.             ></div>
  26.             <div
  27.                 style="background-color: blue; float: left;"
  28.             ></div>
  29.             <div
  30.                 style="background-color: yellow; float: right;"
  31.             ></div>
  32.             <div
  33.                 style="background-color: gray; float: left;"
  34.             ></div>
  35.             <div
  36.                 style="background-color: violet; float: right;"
  37.             ></div>
  38.             <div style="width: 100px; height: 500px; background-color: fuchsia"></div>
  39.         </div>
  40.     </body>
  41. </html>
Add Comment
Please, Sign In to add comment