Tailwind CSS Classes

Tailwind CSS class .scrolling-touch / .scrolling-auto

<div class="scrolling-touch overflow-auto h-32 w-64 bg-gray-300 m-2">
  Lorem Ipsum is simply dummy text of the printing and typesetting industry. 
  Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, 
  when an unknown printer took a galley of type and scrambled it to make a type specimen book.
</div>

<div class="scrolling-auto overflow-auto h-32 w-64 bg-gray-300 m-2">
  Lorem Ipsum is simply dummy text of the printing and typesetting industry. 
  Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, 
  when an unknown printer took a galley of type and scrambled it to make a type specimen book.
</div>

Preview

Are you tired of writing HTML by hand?

CSS source

.scrolling-touch { -webkit-overflow-scrolling: touch; }
.scrolling-auto { -webkit-overflow-scrolling: auto; }

More Tailwind CSS classes in Utilities category

© 2024 Shuffle. All rights reserved.