1234567891011121314151617181920212223 |
- <!doctype html>
- <html lang="en">
- <head>
- <meta charset="UTF-8">
- <title>Background size cover</title>
- <style>
- body {
- margin: 0;
- }
- .profile-box {
- height: 600px;
- background-image: url(img/big-cat.jpg);
- background-size: cover;
- background-position: 50% 30%;
- background-repeat: no-repeat;
- }
- </style>
- </head>
- <body>
- <header class="profile-box" role="banner"></header>
- </body>
- </html>
|