πŸ₯³Tricks Must Need to Know

🌱 We Need Knowledge of this:

Use overflow-auto to add scrollbars to an element

<div class="overflow-hidden"></div>

Use h-screen to set height with "Height=100vh"

<div class="h-screen"></div>

Taliwind Padding

  • p-0 padding: 0px;

  • px-0 padding-left: 0px; padding-right: 0px;

  • py-0 padding-top: 0px; padding-bottom: 0px;

  • pt-0 padding-top: 0px;

  • pr-0 padding-right: 0px;

  • pb-0 padding-bottom: 0px;

  • pl-0 padding-left: 0px

Last updated