Advertisement
Guest User

Untitled

a guest
Feb 7th, 2016
68
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.34 KB | None | 0 0
  1. .row {
  2. display: block;
  3. width: 100%;
  4. background: #ddd;
  5. }
  6. .col-1, .col-2, .col-3, .col-4 {
  7. display: inline-block;
  8. height: 100px;
  9. }
  10. .col-1 {
  11. width: 24.7%;
  12. background: red;
  13. }
  14. .col-2 {
  15. width: 49.7%;
  16. background: green;
  17. }
  18. .col-3 {
  19. width: 74.7%;
  20. background: blue;
  21. }
  22. .col-4 {
  23. width: 99.5%;
  24. background: pink;
  25. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement