Advertisement
Guest User

Untitled

a guest
Jun 25th, 2019
68
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.90 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <link rel="stylesheet" href="teste.css">
  5. </head>
  6.  
  7. <body>
  8.  
  9. <div class="centro">
  10.  
  11. <div class="conteudo" id="um"></div>
  12. <div class="conteudo" id="dois"></div>
  13. <div class="conteudo" id="tres"></div>
  14. <div class="conteudo" id="quatro"></div>
  15. <div class="conteudo" id="cinco"></div>
  16. <div class="conteudo" id="seis"></div>
  17. <div class="conteudo" id="sete"></div>
  18. <div class="conteudo" id="oito"></div>
  19.  
  20. </div>
  21.  
  22. </body>
  23. </html>
  24.  
  25. * {
  26. margin: 0;
  27. padding: 0;
  28. }
  29.  
  30. html, body {
  31. width: 100vw;
  32. height: 100vh;
  33. overflow: hidden;
  34. }
  35.  
  36. .centro {
  37. width: 80%;
  38. height: 50%;
  39. border: 2px solid #808080;
  40. transform: translate(10%,50%);
  41. padding: 5px;
  42. overflow-y: auto;
  43. display: flex;
  44. flex-wrap: wrap;
  45. justify-content: space-around;
  46. }
  47.  
  48. .conteudo {
  49. width: 230px;
  50. height: 230px;
  51. border: 5px dashed #808080;
  52. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement