Я попытался создать страницу профиля, на которой пользователь моего веб-сайта будет иметь изображение как своего рода баннер, а затем его фотографию профиля.
Мне удалось это сделать:
when I try to use the top-margin
on the image, it move the image but also expend the background the image and I do not want this. I am looking to get this :
I notice that in my code, the image seems being repeated instead of just fit/cropped.
below is the code:
class Profiles extends React.Component{
render(){
return(
profileImg еще )}}
и css
.profile-container {
margin-top: 3rem;
margin-bottom:5rem;
}
.profile-header {
width: 70% ;
height: 5% ;
max-height: 25rem;
margin-left: auto;
margin-right: auto;
background-color: blue;
border-radius: 20px;
}
.profile-header-image-user {
border-radius: 150px;
width: 130px;
height: 130px;
margin-left: 5%;
margin-top: 15%;
}
.profile-content {
width: 60%;
background-color: green;
margin-left: auto;
margin-right: auto;
}
Моя цель - иметь возможность отображать баннер и профиль pi c, как показано на втором рисунке, и сохранить этот рендер при изменении размера экрана.
Есть ли у меня идеи, чтобы можно было переместить профиль pi c, влияя на размер баннера?
Спасибо