08-18-background-image-media-query.html 1.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960
  1. <!doctype html>
  2. <html lang="en">
  3. <head>
  4. <meta charset="UTF-8">
  5. <title>Profile header with responsive background-image</title>
  6. <meta name="viewport" content="width=device-width, initial-scale=1">
  7. <style>
  8. body {
  9. padding: 0;
  10. margin: 0;
  11. font-family: "Helvetica Neue", Arial, sans-serif;
  12. }
  13. .profile-box {
  14. position: relative;
  15. height: 300px;
  16. background-size: cover;
  17. background-position: 50% 50%;
  18. background-image: url(img/small-cat.jpg);
  19. }
  20. @media only screen and (min-width: 600px) {
  21. .profile-box {
  22. height: 600px;
  23. background-image: url(img/big-cat.jpg);
  24. }
  25. }
  26. .profile-photo {
  27. width: 160px;
  28. min-height: 200px;
  29. position: absolute;
  30. bottom: -60px;
  31. left: 5%;
  32. padding: .5em;
  33. -webkit-border-radius: .5em;
  34. border-radius: .5em;
  35. background-color: #fff;
  36. box-shadow: .25em .25em .5em rgba(0, 0, 0, 0.3);
  37. }
  38. .profile-photo img {
  39. display: block;
  40. max-width: 100%;
  41. height: auto;
  42. }
  43. .username {
  44. font-size: 20px;
  45. color: #666;
  46. margin: .35em 0 0;
  47. }
  48. </style>
  49. </head>
  50. <body>
  51. <header class="profile-box" role="banner">
  52. <div class="profile-photo">
  53. <img src="img/profile.jpg" alt="Charles the Cat">
  54. <h1 class="username">@CharlesTheCat</h1>
  55. </div>
  56. </header>
  57. </body>
  58. </html>