Guest User

Untitled

a guest
Oct 20th, 2018
93
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.66 KB | None | 0 0
  1. /**
  2. * Блок по центру экрана, с максимальной шириной и ограничением
  3. */
  4.  
  5.  
  6. /* стили для блока с ограничением */
  7. .b-limited-content {
  8. max-width: 1000px;
  9. margin: 0 auto 1.2em 200px;
  10. height: 100px;
  11. background: rgb(0, 127, 255);
  12. }
  13.  
  14.  
  15. /* вспомагательные стили */
  16. body {
  17. margin: 0;
  18. }
  19. .b-layout {
  20. position: relative;
  21. min-width: 800px;
  22. overflow: hidden;
  23. }
  24.  
  25. .b-content {
  26. max-width: 1200px;
  27. margin: 0 auto 1.2em;
  28. height: 100px;
  29. background: rgb(255, 200, 200);
  30. }
  31.  
  32. .b-limit {
  33. position: absolute;
  34. top: 0;
  35. left: 0;
  36. width: 197px;
  37. height: 300px;
  38. border-right: 3px dashed red;
  39. }
Add Comment
Please, Sign In to add comment