05-13-background-size-cover-position.html 438 B

1234567891011121314151617181920212223
  1. <!doctype html>
  2. <html lang="en">
  3. <head>
  4. <meta charset="UTF-8">
  5. <title>Background size cover</title>
  6. <style>
  7. body {
  8. margin: 0;
  9. }
  10. .profile-box {
  11. height: 600px;
  12. background-image: url(img/big-cat.jpg);
  13. background-size: cover;
  14. background-position: 50% 30%;
  15. background-repeat: no-repeat;
  16. }
  17. </style>
  18. </head>
  19. <body>
  20. <header class="profile-box" role="banner"></header>
  21. </body>
  22. </html>