Advertisement
zero50x

Как вытащить фон за пределы блока bootstrap

Feb 8th, 2017
200
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 0.47 KB | None | 0 0
  1. /* Блок с фоном */
  2. .back_micro3 {
  3.     position: relative;    
  4.     width: 100%;    
  5.     height: 400px;    
  6.     left: 0px;
  7.     /* overflow: hidden; */    
  8.     /* background-image: url(../images/back_micro3.jpg); */    
  9.     margin-top: 0px;    
  10.     margin-bottom: 0px;
  11. }
  12.  
  13. .back_micro3:before{    
  14.     content: '';    
  15.     position: absolute;    
  16.     left: -10%;    
  17.     right: -10%;    
  18.     background: url(../images/back_micro3.jpg);  
  19.     top: 0;    
  20.     bottom: 0;    
  21.     background-size: cover;
  22. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement