Frontend Tidbits

Sep 11, 2025

capitalising / styling first letter

CSS has a pseudo-class for the first letter of a block of text: ::first-letter

Tailwind example

  <p class="first-letter:capitalize">
   {firstName}
  </p>
 

scale effect on button press

preventing the ‘bounce’ when overscrolling

You can use the overscroll-behavior property to prevent the ‘bounce’ when overscrolling.

Tailwind docs

⇦ back to all notes