Advertisement
Guest User

Untitled

a guest
Feb 20th, 2020
85
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.70 KB | None | 0 0
  1. #element1
  2. {
  3. width: 600px;
  4. border: 3px solid black;
  5. position: absolute;
  6. background-color:skyblue;
  7. }
  8. #element2
  9. {
  10. width: 400px;
  11. height: 400px;
  12. background-color: red;
  13. position: relative;
  14. left: 100px;
  15. right: 100px;
  16. top: 100px;
  17. bottom: 100px;
  18. }
  19. #element3
  20. {
  21. width: 600px;
  22. height: 600px;
  23. border: 3px solid black;
  24. background-color: skyblue;
  25. float: left;
  26. position: absolute;
  27. margin-top: 300px;
  28. }
  29. #element4
  30. {
  31. width: 100px;
  32. height: 100px;
  33. background-color: red;
  34. position: relative;
  35. left: 250px;
  36. right: 250px;
  37. top: 250px;
  38. bottom: 250px;
  39. float: left;
  40. margin-top: 300px;
  41. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement