Испытание: Панель управления

Привет, не могу в топиках найти решенную аналогичную проблему, у меня решение выдает 87,7, из - за того, что блог .content визуально занимает больше место, чем панель управления. Не могу понять а) почему? б) как исправить, буду безумно благодарен за помощь, вот код и принтскрин:

.tabs-list {
  margin: 0px;
  padding: 0px;
  width: 180px;
  display: flex;
  flex-direction: column;
}

.tab {
  margin-bottom: 15px;
  }

.active {
  align-self: flex-end;
  }
  
.content {
  width: 280px;
  padding: 20px 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
  }

.author {
  align-self: flex-start;
  order: 0;
  margin-bottom: 15px;
  }
  
.image {
  max-width: 100%;
  height: auto;
  order: 1;
  margin-top: 0;
  margin-bottom: 15px;
  
}  
  
.title {
  order: 2;
  margin-top: 0px;
  margin-bottom: 5px;
  }
  
.message {
  order: 3;
  margin: 0px;
  margin-top: 0px;
  margin-bottom: 20px;
  }
.tabs-list {
  margin: 0px;
  padding: 0px;
  width: 180px;
  display: flex;
  flex-direction: column;
  
}

.tab {
  margin-bottom: 15px;
  }

.active {
  align-self: flex-end;
  }
  
.content {
  width: 280px;
  padding: 20px 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
  }

.author {
  align-self: flex-start;
  order: 0;
  margin-bottom: 15px;
  }
  
.image {
  max-width: 100%;
  height: auto;
  order: 1;
  margin-top: 0;
  margin-bottom: 15px;
  
}  
  
.title {
  order: 2;
  margin-top: 0px;
  margin-bottom: 5px;
  }
  
.message {
  order: 3;
  margin: 0px;
  margin-top: 0px;
  margin-bottom: 20px;
  }

.reply-link {
  order: 4;
  margin-top: 0px;
  margin-bottom: 0px;
  }
  


.reply-link {
  order: 4;
  margin-top: 0px;
  margin-bottom: 0px;
  }
  

Не всматривался. Но мб потому что у последнего .tab не убран нижний мэрджин.
.tab:last-child {
margin-bottom: 0;
}

1 лайк

Уважаемый товарищ, вы гений. Я думал надо решить что-то с флекс-контейнером контента, а проблема то оказалось в другой стороне, спасибо!