почему в моем коде не засчитывается как правильный ответ “активная ссылка”, если отображается, что она прилепилась, а после сравнение выдает, что якобы нет.
.tabs-list{
width:180px;
margin:0;
padding:0;
display:flex;
flex-direction: column;
}
.tab{
align-self: start;
}
.tab:not(:last-child) {
margin-bottom: 15px;
}
.active{
align-self: end;
}
.content{
display:flex;
flex-direction: column;
align-items:center;
width:280px;
padding:20px 30px;
}
.title{
order:3;
margin: 0 0 5px 0;
}
.author{
order:1;
margin:0 0 15px 0;
align-self: flex-start;
}
.image{
max-width: 100%;
height: auto;
order:2;
margin:0 0 15px 0;
}
.message{
order:4;
margin:0 0 20px 0;
}
.reply-link{
order:5;
}