Доброго времени суток. Пишу свой первый проект на обучении, возникла сложность с позиционированием. Почему main-illustration выходит сверху, а не в правом нижнем углу, относительно header, как указываю? Заранее спасибо за ответы!
.page {
font-family: 'Helvetica Neue', 'Arial', sans-serif;
min-width:1100px;
max-width:1600px;
}
.header {
position: relative;
display:flex;
align-items: center;
background-color: #f2f2f2;
min-height:600px;
max-height:756px;
}
.logo_place_header {
width:228px;
height:32px;
position:absolute;
top:30px;
left:64px;
}
.title {
display:flex;
line-height: 96px;
font-size: 102px;
font-weight: bold;
align-items: center;
margin-left:64px;
width:730px;
}
.subtitle {
position:absolute;
left:64px;
width:388px;
bottom:30px;
line-height: 25px;
font-size: 18px;
font-weight: normal;
}
.main-illustration{
position:absolute;
bottom: 0;
right: 0;
width:765px;
height:608px;
}
Вопрос задан
10 часов назад
59 просмотров