CSS код для стилизации:
/* Общие стили */
body, html {
margin: 0;
padding: 0;
font-family: Arial, sans-serif;
background-color: #f4f4f4;
}
/* Стиль контейнера профиля */
.profile-container {
position: relative;
width: 100%;
height: 300px;
display: flex;
justify-content: center;
align-items: center;
overflow: hidden;
}
/* Стиль фона */
.background-image img {
width: 100%;
height: 100%;
object-fit: cover;
position: absolute;
top: 0;
left: 0;
}
/* Стиль карточки пользователя */
.profile {
position: relative;
z-index: 2;
text-align: center;
color: white;
background: rgba(0, 0, 0, 0.5);
padding: 20px;
border-radius: 10px;
}
/* Фото пользователя */
.profile-img {
width: 100px;
height: 100px;
border-radius: 50%;
object-fit: cover;
margin-bottom: 10px;
}
/* Имя пользователя */
.profile h1 {
margin: 0;
font-size: 1.5em;
}
/* Профессия пользователя / должность */
.profile span {
display: block;
margin-top: 5px;
font-size: 1.1em;
}
/* Описание */
.profile p {
margin-top: 10px;
font-size: 0.9em;
color: #ccc;
}
Разбор:
- HTML:
- Контейнеры делятся на несколько ключевых частей: