-2

i have the problem with tailwind that the w-96 show correct and w-86 show not correct, what is the problem ?

<body>
    <div class="mx-auto mt-20 mx-10">
      <div class="mx-auto justify-center w-98">
        <img class="" src="/image-product-mobile.jpg" alt="" srcset="" />
        <h1 class="font-bold">Lorem ipsum dolor sit amet consectetur, adipisicing elit. 
            Incidunt, accusamus.</h1>
        <p>Lorem, ipsum dolor sit amet consectetur adipisicing elit. 
            Cupiditate praesentium eius deserunt aliquid cum saepe quod nemo provident magni modi.</p>
      </div>
  
    </div>
  </body>
</html>

 

here the picture

gasman
  • 23,691
  • 1
  • 38
  • 56

1 Answers1

0

w-86 is not a Tailwind class.

https://tailwindcss.com/docs/width

See the section on "Customizing your theme" and "Arbitrary values" on the above link.

stickyuser
  • 2,552
  • 15
  • 15