Advertisement
Guest User

Untitled

a guest
Sep 20th, 2019
124
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.57 KB | None | 0 0
  1. div {
  2. width: 100px;
  3. height: 100px;
  4. /* Para deixar o texto centralizado na div,
  5. podemos colocar um line-height igual à altura
  6. dela. Só funciona bem se o texto tiver uma
  7. linha só.
  8. */
  9. line-height: 100px;
  10. text-align: center;
  11. font-size: 25px;
  12. }
  13. .container {
  14. width: 700px;
  15. }
  16. .primeiro {
  17. background-color: red;
  18. float: rigth;
  19. }
  20. .segundo {
  21. background-color: blue;
  22. float: right;
  23. }
  24. .terceiro {
  25. width: 200px;
  26. height: 200px;
  27. line-height: 200px;
  28. background-color: green;
  29. float:rigth;
  30. }
  31. .quarto {
  32. background-color: orange;
  33. }
  34. .quinto {
  35. background-color: magenta;
  36. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement