How to make flex overflow-x in tailwind css when there i have 5 divs with w-1/4?
<div class"flex overflow-auto w-full relative">
<div class="w-1/4"> sample </div>
<div class="w-1/4"> sample </div>
<div class="w-1/4"> sample </div>
<div class="w-1/4"> sample </div>
<div class="w-1/4"> sample </div>
</div>
What I'm expecting is that the fifth div will overflow but flex still displays the fifth div. How can i make it overflow the fifth div?