Issue
I would like to know how I can set the limits for the page
src="https://i.stack.imgur.com/28b0b.png" alt="page-limits" />
Solution
try adding break-all in your class.
<div className="w-[100px]">
<div className="break-all">
aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
</div>
</div>
this will break in the limit of the parent:
100px
---------
aaaaaaaaa
aaaaaaaaa
aaaaaaaaa
Answered By - Matias Bertoni
Answer Checked By - - Mildred Charles (ReactFix Admin)