Advertisement
Guest User

Untitled

a guest
Jun 29th, 2016
57
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.52 KB | None | 0 0
  1. <div class="one"></div>
  2. <div class="two"></div>
  3. <div class="three">
  4. <h1>Hello</h1>
  5. </div>
  6. <div class="four">
  7. <h1>Hello</h1>
  8. </div>
  9.  
  10. *{
  11. padding: 0;
  12. margin: 0;
  13. }
  14. html,
  15. body {
  16. height: 100%;
  17. width: 100%;
  18. }
  19. .one {
  20. width: 100%;
  21. height: 50px;
  22. background-color: #c4c9d4;
  23. }
  24. .two{
  25. width: 100%;
  26. height: 80px;
  27. background-color: #a7aebe;
  28. }
  29. .three{
  30. width: 20%;
  31. height: 100%;
  32. overflow: hidden;
  33. float: left;
  34. background-color: #8a93a8;
  35. }
  36. .four{
  37. width: 80%;
  38. float: left;
  39. background-color: #576075;
  40. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement