In Tailwind Officail docs, there are lots of width utilities we can use.
However, the maximum fixed width I can specify is w-96
, which is width: 24rem; (384px)
I've noticed a weird class called w-px
, at first glance, I thought I can do w-600px
, but it's not working, it is exactly 1px
.
I am currently migrating my old project to Tailwind CSS, so there are going to have lots of weird widths I need to specify, but Tailwind CSS doesn't provide them by default.
If I can just do w-600px
would be nice, or am I missing any other better approach?