
.b-replies { order: -1; } не работает..body { display: flex; flex-direction: column; }
.b-replies { order: -1; }Но flex-direction: column; растягивает все элементы внутри .body на всю ширину. Такие как .b-mention, .smiley и т.д. .body, по отдельности (не знаю как).#profiles_feed div.subheadline:nth-child(1),
#profiles_feed .editor-container > .subheadline {
font-size: 0;
letter-spacing: 0;
}
#profiles_feed div.subheadline:nth-child(1) {
/*content: "Стена";
vertical-align: top;
font-size: 14px;
letter-spacing: .13px;*/
visibility: hidden;
}
#profiles_feed .editor-container > .subheadline:after {
content: "Стена";
vertical-align: top;
font-size: 14px;
letter-spacing: .13px;
}
#profiles_feed .block,
#profiles_feed .editor-container { transform: scale(1, -1); }
#profiles_feed .b-comments {
transform: scale(1, -1);
display: flex;
flex-direction: column-reverse;
}#profiles_feed div.subheadline:nth-child(1),
#profiles_feed .editor-container > .subheadline {
font-size: 0;
letter-spacing: 0;
}
#profiles_feed div.subheadline:nth-child(1) {
content: "Стена";
vertical-align: top;
font-size: 14px;
letter-spacing: .13px;
/*visibility: hidden;*/
}
#profiles_feed .editor-container > .subheadline:after {
content: "Твой комментарий";
vertical-align: top;
font-size: 14px;
letter-spacing: .13px;
}
/* Блок с новым комментарием вверху */
#profiles_feed .block > div,
/* Обратный вывод комментариев (новые вверху) */
#profiles_feed .b-comments {
display: flex;
flex-direction: column-reverse;
}


?
@Apc, переворачивать пол страницы с помощьюtransform: scale(1, -1), интересно, но зачем? Почему бы не использоватьflexвместо всех правил сtransform: scale(1, -1)?А порядок внутри комментариев можно исправить с помощью
order, как и сказали выше.@Apc,@Apc