Question from the Tailwind test

Given a Tailwind CSS code, find the color of the element that will be displayed first.

Easy

Given the code

<div class="flex flex-row">
    <div class="flex flex-col-reverse">
        <div class="bg-red-200 w-64">A</div>
        <div class="bg-green-200 w-64">B</div>
    </div>
</div>

What is the color of the element that will be displayed first?

Author: DamienStatus: PublishedQuestion passed 7 times
Edit
0
Community EvaluationsNo one has reviewed this question yet, be the first!