Skip to content
Get ready for the next version of Yumma CSS, which is going to be amazing!

List Style Type

Controls the style of a list.

Class Property

lst-c

list-style-type: circle;

lst-d

list-style-type: disc;

lst-s

list-style-type: square;

Using responsive modifiers

Using responsive breakpoints like sm:lst-*, md:lst-*, lg:lst-*, and xxl:lst-* allows targeting specific utilities in different viewports.

<div class="lst-d md:lst-s ..."></div>

Using hover modifiers

Using :hover modifiers such as h:lst-* allows you to override elements and change their values when hovering over them.

<div class="lst-d h:lst-s ..."></div>