CSS: Направление Flex-элементов
Задание
Loading...
Ваше упражнение проверяется по этим тестам
const { test } = require('tests');
test(({ query, expect }) => {
const flexContainer = query(document, '.qa');
const style = getComputedStyle(flexContainer);
expect(style).to.have.property('display', 'flex');
expect(style).to.have.property('flex-direction', 'row-reverse');
});
Решение учителя откроется через:
20:00
