Advertisement
alexappelt

Untitled

Jul 12th, 2019
99
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 5 0.59 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4.     <title>Elementos Flutuantes</title>
  5.     <meta charset="utf-8">
  6.     <style type="text/css">
  7.        
  8.         .conteudo{
  9.             background: blue;
  10.             border: 1px solid gray;
  11.             width: 200px;
  12.             height: 200px;
  13.             float: left;
  14.         }
  15.  
  16.  
  17.         .conteudo1{
  18.                     background: red;
  19.                     border: 1px solid gray;
  20.                     width: 150px;
  21.                     height: 150px;
  22.                     float: left;
  23.                 }
  24.        
  25.     </style>
  26. </head>
  27. <body>
  28.  
  29. <div class="conteudo">
  30.     Conteudo 1
  31. </div>
  32.  
  33. <div class="conteudo">
  34.     Conteudo 2
  35. </div class="conteudo">
  36.  
  37. <div class="conteudo">
  38.     Conteudo 3
  39. </div>
  40.  
  41.  
  42.  
  43. </body>
  44. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement