With tailwindcss 3.4.1 I have define a table, like :
<div class="my-0 mx-2 p-0 overflow-x-auto">
<table class="editor_listing_table mb-4">
<thead class="editor_listing_table_header">
<tr>
...
and as the table is wrapped in overflow-x-auto class it has x-scrolling.
But when I add fieldset wrapping these div/table :
<fieldset class="p-1 m-1 mb-6 bordered">
<legend class="bordered">
Your active tasks
</legend>
<div class="my-0 mx-2 p-0 overflow-x-auto d1">
<table class="editor_listing_table mb-4">
<thead class="editor_listing_table_header">
<tr>
...
x-scrolling does not work anymore and I do not know haw can I change fieldset to allow x-scrolling of table with data ?