05-17-border-radius-single-corner.html 1.1 KB

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