Guest User

Untitled

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