I have the following in a file, generated by javascript.
As one can see it is using TailWindCSS.
<body>
<div className='flex flex-row w-lwm'>
<div>AA</div>
<div>BB</div>
</div>
.....
And the display in the web browser is as shown here:
I wonder why BB appears below AA and not on the right, since I am using flex-row and not flex-col.
Besides, all seems OK later in the rest of my page.
Can someone spot any issue that I may be missing ?