I am looking to implement a grid layout using tailwindcss v3. Below is the HTML markup:
<script src="https://cdn.tailwindcss.com"></script>
<div class="grid-rows grid grid-cols-1 gap-2 md:grid-cols-2">
<div class="order-1 w-full bg-blue-500 text-center"><b>1</b>Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s...
<div class="order-3 w-full bg-blue-500 text-center md:order-2 md:row-span-1"><b>2</b>Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took...
<div class="order-4 w-full bg-blue-500 text-center md:order-3"><b>3</b>Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industr...
<div class="order-2 w-full bg-blue-500 text-center md:order-4"><b>4</b>Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has b...</div>
</div>
Wondering how I can position the 3rd div (highlighted in bold) to start from the end of the 1st div rather than on the second row.