Guest User

Untitled

a guest
Aug 27th, 2016
58
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.41 KB | None | 0 0
  1. header {
  2. min-height: 700px;
  3. background-image: url(../img/fon-header.jpg);
  4. background-position: top center;
  5. -o-background-size: cover;
  6. -moz-background-size: cover;
  7. -webkit-background-size: cover;
  8. background-size: cover;
  9.  
  10. }
  11.  
  12. //адаптивная картинка в header при min-height
  13. function wResize() {
  14. $("header").css("height", $(window).height());
  15. };
  16. wResize();
  17. $(window).resize(function() {
  18. wResize();
  19. });
Add Comment
Please, Sign In to add comment