Installation

Get started with Rollercss

Use our cdn links to use Rollercss in your document. As reference, this is our cdn links

Wants to know more about installation ?

view our get started page.
Get started

Layout

Container

A component for fixing an element's width to the current breakpoint.

Class

Properties

container



Basic usage

Using the container

The 'container' class sets the 'max-width' of an element to match the 'min-width' of the current breakpoint. This is useful if you’d prefer to design for a fixed set of screen sizes instead of trying to accommodate a fully fluid viewport.
Note : that unlike containers you might have used in other libraries, Rollercss’s container does not center itself automatically and does not have any built-in horizontal padding.



Applying conditionally

Responsive variants

The 'container' class also includes responsive variants like 'md:container' by default that allow you to make something behave like a container at only a certain breakpoint and up:

<-- Full-width fluid until the `md` breakpoint, then lock to container-->
<div class="md:container md:mx-auto">
</div>


Hover state

Rollercss lets you conditionally apply utility classes in hover state using variant modifiers. For example, use hover:container.

<-- Full-width fluid until the user hover, then lock to container-->
<div class="hover:container hover:mx-auto">
</div>

Layout

Display

Utilities for controlling the display box type of an element.

Class

Properties

d-none

d-flex

d-block

d-grid

d-inline

d-in-flex

d-in-block

d-in-grid

d-in-table



Responsive breakpoints and hovering

Like all the Rollercss's property this property also supports reponsive and hovering state. Example : md:d-block , lg:d-grid , hover:d-flex etc.

Layout

Float

Utilities for controlling the wrapping of content around an element.

Class

Properties

float-none

float-left

float-right



Responsive breakpoints and hovering

Like all the Rollercss's property this property also supports reponsive and hovering state. Example : md:float-left , lg:float-right , hover:float-left etc.

Layout

Overflow

Utilities for controlling how an element handles content that is too large for the container.

Class

Properties

overflow-auto

overflow-hidden

overflow-visible

overflow-scroll

overflow-x-auto

overflow-x-hidden

overflow-x-visible

overflow-x-scroll

overflow-y-auto

overflow-y-hidden

overflow-y-visible

overflow-y-scroll



Responsive breakpoints and hovering

Like all the Rollercss's property this property also supports reponsive and hovering state. Example : md:overflow-hidden , lg:overflow-scroll , hover:overflow-hidden etc.

Layout

Position

Utilities for controlling how an element should be positioned.

Class

Properties

absolute

relative

static

sticky



Responsive breakpoints and hovering

Like all the Rollercss's property this property also supports reponsive and hovering state. Example : md:relative , lg:absolute , hover:static etc.

Layout

Visibility

Utilities for controlling the visibility of an element.

Class

Properties

visible

invisible



Responsive breakpoints and hovering

Like all the Rollercss's property this property also supports reponsive and hovering state. Example : md:invisible , lg:visible , hover:invisible etc.

Layout

Z-index

Utilities for controlling the 'z' axis of an element.

Class

Properties

z-auto

z-0

z-1

z-2

z-3

z-4

z-5

z-6

z-7

z-8

z-9

z-10

z-full



Responsive breakpoints and hovering

Like all the Rollercss's property this property also supports reponsive and hovering state. Example : md:z-9 , lg:z-2 , hover:z-5 etc.

Layout

Colors

Utilities for all the colors.

Color name

Color

transparent

black

white

gray

gray-100

gray-200

gray-300

gray-400

gray-500

gray-600

gray-700

gray-800

gray-900

gray-1000

brown

brown-100

brown-200

brown-300

brown-400

brown-500

brown-600

brown-700

brown-800

brown-900

brown-1000

orange

orange-100

orange-200

orange-300

orange-400

orange-500

orange-600

orange-700

orange-800

orange-900

orange-1000

red

red-100

red-200

red-300

red-400

red-500

red-600

red-700

red-800

red-900

red-1000

yellow

yellow-100

yellow-200

yellow-300

yellow-400

yellow-500

yellow-600

yellow-700

yellow-800

yellow-900

yellow-1000

green

green-100

green-200

green-300

green-400

green-500

green-600

green-700

green-800

green-900

green-1000

light-green

light-green-100

light-green-200

light-green-300

light-green-400

light-green-500

light-green-600

light-green-700

light-green-800

light-green-900

light-green-1000

pink

pink-100

pink-200

pink-300

pink-400

pink-500

pink-600

pink-700

pink-800

pink-900

pink-1000

purple

purple-100

purple-200

purple-300

purple-400

purple-500

purple-600

purple-700

purple-800

purple-900

purple-1000

blue

blue-100

blue-200

blue-300

blue-400

blue-500

blue-600

blue-700

blue-800

blue-900

blue-1000

light-blue

light-blue-100

light-blue-200

light-blue-300

light-blue-400

light-blue-500

light-blue-600

light-blue-700

light-blue-800

light-blue-900

light-blue-1000

cyan

cyan-100

cyan-200

cyan-300

cyan-400

cyan-500

cyan-600

cyan-700

cyan-800

cyan-900

cyan-1000



Uses of these colors.

You can use these colors on every property which supportes colors. Example : c-red-500 , bg-yellow-300 , shadow-red-200 etc.

Typography

Font-family

Utilities for controlling the font family of an element.

Class

Properties

font-serif

font-sans

font-mono

font-cursive

font-fantasy



Responsive breakpoints and hovering

Like all the Rollercss's property this property also supports reponsive and hovering state. Example : md:font-cursive , lg:font-fantasy , hover:font-sans etc.

Typography

Font-size

Utilities for controlling the font size of an element.

Class

Properties

text-1

text-2

text-3

text-4

text-5

text-6

text-7

text-8

text-9

text-10



Responsive breakpoints and hovering

Like all the Rollercss's property this property also supports reponsive and hovering state. Example : md:text-5 , lg:text-8 , hover:text-10 etc.

Typography

Font-weight

Utilities for controlling the font weight of an element.

Class

Properties

text-bold-1

text-bold-2

text-bold-3

text-bold-4

text-bold-5

text-bold-6

text-bold-7

text-bold-8

text-bold-9

text-bold-10



Responsive breakpoints and hovering

Like all the Rollercss's property this property also supports reponsive and hovering state. Example : md:text-bold-4 , lg:text-bold-6 , hover:text-bold-5 etc.

Typography

Font-style

Utilities for controlling the font style of an element.

Class

Properties

text-none

text-italic

text-normal

text-lower

text-upper

text-capital

text-underline

text-line-through



Responsive breakpoints and hovering

Like all the Rollercss's property this property also supports reponsive and hovering state. Example : md:text-none , lg:text-italic , hover:text-underline etc.

Typography

Font-color

Utilities for controlling the font color of an element.

Color name

Color

c-transparent

c-black

c-white

c-gray

c-gray-100

c-gray-200

c-gray-300

c-gray-400

c-gray-500

c-gray-600

c-gray-700

c-gray-800

c-gray-900

c-gray-1000

c-brown

c-brown-100

c-brown-200

c-brown-300

c-brown-400

c-brown-500

c-brown-600

c-brown-700

c-brown-800

c-brown-900

c-brown-1000

c-orange

c-orange-100

c-orange-200

c-orange-300

c-orange-400

c-orange-500

c-orange-600

c-orange-700

c-orange-800

c-orange-900

c-orange-1000

c-red

c-red-100

c-red-200

c-red-300

c-red-400

c-red-500

c-red-600

c-red-700

c-red-800

c-red-900

c-red-1000

c-yellow

c-yellow-100

c-yellow-200

c-yellow-300

c-yellow-400

c-yellow-500

c-yellow-600

c-yellow-700

c-yellow-800

c-yellow-900

c-yellow-1000

c-green

c-green-100

c-green-200

c-green-300

c-green-400

c-green-500

c-green-600

c-green-700

c-green-800

c-green-900

c-green-1000

c-light-green

c-light-green-100

c-light-green-200

c-light-green-300

c-light-green-400

c-light-green-500

c-light-green-600

c-light-green-700

c-light-green-800

c-light-green-900

c-light-green-1000

c-pink

c-pink-100

c-pink-200

c-pink-300

c-pink-400

c-pink-500

c-pink-600

c-pink-700

c-pink-800

c-pink-900

c-pink-1000

c-purple

c-purple-100

c-purple-200

c-purple-300

c-purple-400

c-purple-500

c-purple-600

c-purple-700

c-purple-800

c-purple-900

c-purple-1000

c-blue

c-blue-100

c-blue-200

c-blue-300

c-blue-400

c-blue-500

c-blue-600

c-blue-700

c-blue-800

c-blue-900

c-blue-1000

c-light-blue

c-light-blue-100

c-light-blue-200

c-light-blue-300

c-light-blue-400

c-light-blue-500

c-light-blue-600

c-light-blue-700

c-light-blue-800

c-light-blue-900

c-light-blue-1000

c-cyan

c-cyan-100

c-cyan-200

c-cyan-300

c-cyan-400

c-cyan-500

c-cyan-600

c-cyan-700

c-cyan-800

c-cyan-900

c-cyan-1000



Responsive breakpoints and hovering

Like all the Rollercss's property this property also supports reponsive and hovering state. Example : md:c-blue , lg:c-red-500 , hover:c-yellow-900 etc.

Typography

Letter-spacing

Utilities for controlling the letter space of an element.

Class

Properties

text-space-1

text-space-2

text-space-3

text-space-4

text-space-5

text-space-6

text-space-7

text-space-8

text-space-9

text-space-10



Responsive breakpoints and hovering

Like all the Rollercss's property this property also supports reponsive and hovering state. Example : md:text-space-4 , lg:text-space-9 , hover:text-space-3 etc.

Typography

Line-height

Utilities for controlling the line height of an element.

Class

Properties

line-space-1

line-space-2

line-space-3

line-space-4

line-space-5

line-space-6

line-space-7

line-space-8

line-space-9

line-space-10



Responsive breakpoints and hovering

Like all the Rollercss's property this property also supports reponsive and hovering state. Example : md:line-space-4 , lg:line-space-9 , hover:line-space-3 etc.

Typography

Text-alignment

Utilities for controlling the text alignment of an element.

Class

Properties

text-left

text-right

text-center

text-justify



Responsive breakpoints and hovering

Like all the Rollercss's property this property also supports reponsive and hovering state. Example : md:text-left , lg:text-right , hover:text-center etc.

Typography

Vertical-alignment

Utilities for controlling the vertical alignment of an element.

Class

Properties

valign-base

valign-bottom

valign-middle

valign-top

valign-text-top

valign-text-bottom



Responsive breakpoints and hovering

Like all the Rollercss's property this property also supports reponsive and hovering state. Example : md:valign-base , lg:valign-bottom , hover:valign-top etc.

Typography

Whitespace and Wrapping

Utilities for controlling the whitespace and wrapping of an element.

Class

Properties

whitespace-normal

whitespace-no-wrap

whitespace-pre

whitespace-pre-line

whitespace-pre-wrap

break-normal

break-word

break-all



Responsive breakpoints and hovering

Like all the Rollercss's property this property also supports reponsive and hovering state. Example : md:whitespace-no-wrap , lg:whitespace-normal , hover:break-word etc.

Background

Background-color

Utilities for controlling the background color of an element.

Color name

Color

bg-transparent

bg-black

bg-white

bg-gray

bg-gray-100

bg-gray-200

bg-gray-300

bg-gray-400

bg-gray-500

bg-gray-600

bg-gray-700

bg-gray-800

bg-gray-900

bg-gray-1000

bg-brown

bg-brown-100

bg-brown-200

bg-brown-300

bg-brown-400

bg-brown-500

bg-brown-600

bg-brown-700

bg-brown-800

bg-brown-900

bg-brown-1000

bg-orange

bg-orange-100

bg-orange-200

bg-orange-300

bg-orange-400

bg-orange-500

bg-orange-600

bg-orange-700

bg-orange-800

bg-orange-900

bg-orange-1000

bg-red

bg-red-100

bg-red-200

bg-red-300

bg-red-400

bg-red-500

bg-red-600

bg-red-700

bg-red-800

bg-red-900

bg-red-1000

bg-yellow

bg-yellow-100

bg-yellow-200

bg-yellow-300

bg-yellow-400

bg-yellow-500

bg-yellow-600

bg-yellow-700

bg-yellow-800

bg-yellow-900

bg-yellow-1000

bg-green

bg-green-100

bg-green-200

bg-green-300

bg-green-400

bg-green-500

bg-green-600

bg-green-700

bg-green-800

bg-green-900

bg-green-1000

bg-light-green

bg-light-green-100

bg-light-green-200

bg-light-green-300

bg-light-green-400

bg-light-green-500

bg-light-green-600

bg-light-green-700

bg-light-green-800

bg-light-green-900

bg-light-green-1000

bg-pink

bg-pink-100

bg-pink-200

bg-pink-300

bg-pink-400

bg-pink-500

bg-pink-600

bg-pink-700

bg-pink-800

bg-pink-900

bg-pink-1000

bg-purple

bg-purple-100

bg-purple-200

bg-purple-300

bg-purple-400

bg-purple-500

bg-purple-600

bg-purple-700

bg-purple-800

bg-purple-900

bg-purple-1000

bg-blue

bg-blue-100

bg-blue-200

bg-blue-300

bg-blue-400

bg-blue-500

bg-blue-600

bg-blue-700

bg-blue-800

bg-blue-900

bg-blue-1000

bg-light-blue

bg-light-blue-100

bg-light-blue-200

bg-light-blue-300

bg-light-blue-400

bg-light-blue-500

bg-light-blue-600

bg-light-blue-700

bg-light-blue-800

bg-light-blue-900

bg-light-blue-1000

bg-cyan

bg-cyan-100

bg-cyan-200

bg-cyan-300

bg-cyan-400

bg-cyan-500

bg-cyan-600

bg-cyan-700

bg-cyan-800

bg-cyan-900

bg-cyan-1000



Responsive breakpoints and hovering

Like all the Rollercss's property this property also supports reponsive and hovering state. Example : md:bg-red-600 , lg:bg-yellow-300 , hover:bg-cyan etc.

Background

Background-size

Utilities for controlling the background size of an element.

Class

Properties

bg-auto

bg-cover

bg-contain

bg-full



Responsive breakpoints and hovering

Like all the Rollercss's property this property also supports reponsive and hovering state. Example : md:bg-full , lg:bg-auto , hover:bg-contain etc.

Background

Background-position

Utilities for controlling the background position of an element.

Class

Properties

bg-center

bg-top

bg-right

bg-bottom

bg-left

bg-left-top

bg-left-bottom

bg-right-top

bg-right-bottom



Responsive breakpoints and hovering

Like all the Rollercss's property this property also supports reponsive and hovering state. Example : md:bg-left , lg:bg-right , hover:bg-top-left etc.

Background

Background-repeat

Utilities for controlling the background repeat of an element.

Class

Properties

bg-repeat

bg-no-repeat

bg-repeat-x

bg-repeat-y



Responsive breakpoints and hovering

Like all the Rollercss's property this property also supports reponsive and hovering state. Example : md:bg-repeat , lg:bg-no-repeat hover:bg-repeat-y etc.

Background

Background-attachment

Utilities for controlling the background attachment of an element.

Class

Properties

bg-fixed

bg-local

bg-scroll



Responsive breakpoints and hovering

Like all the Rollercss's property this property also supports reponsive and hovering state. Example : md:bg-fixed , lg:bg-scroll hover:bg-fixed etc.

Border

Border-color

Utilities for controlling the border color of an element.

Color name

Color

b-transparent

b-black

b-white

b-gray

b-gray-100

b-gray-200

b-gray-300

b-gray-400

b-gray-500

b-gray-600

b-gray-700

b-gray-800

b-gray-900

b-gray-1000

b-brown

b-brown-100

b-brown-200

b-brown-300

b-brown-400

b-brown-500

b-brown-600

b-brown-700

b-brown-800

b-brown-900

b-brown-1000

b-orange

b-orange-100

b-orange-200

b-orange-300

b-orange-400

b-orange-500

b-orange-600

b-orange-700

b-orange-800

b-orange-900

b-orange-1000

b-red

b-red-100

b-red-200

b-red-300

b-red-400

b-red-500

b-red-600

b-red-700

b-red-800

b-red-900

b-red-1000

b-yellow

b-yellow-100

b-yellow-200

b-yellow-300

b-yellow-400

b-yellow-500

b-yellow-600

b-yellow-700

b-yellow-800

b-yellow-900

b-yellow-1000

b-green

b-green-100

b-green-200

b-green-300

b-green-400

b-green-500

b-green-600

b-green-700

b-green-800

b-green-900

b-green-1000

b-light-green

b-light-green-100

b-light-green-200

b-light-green-300

b-light-green-400

b-light-green-500

b-light-green-600

b-light-green-700

b-light-green-800

b-light-green-900

b-light-green-1000

b-pink

b-pink-100

b-pink-200

b-pink-300

b-pink-400

b-pink-500

b-pink-600

b-pink-700

b-pink-800

b-pink-900

b-pink-1000

b-purple

b-purple-100

b-purple-200

b-purple-300

b-purple-400

b-purple-500

b-purple-600

b-purple-700

b-purple-800

b-purple-900

b-purple-1000

b-blue

b-blue-100

b-blue-200

b-blue-300

b-blue-400

b-blue-500

b-blue-600

b-blue-700

b-blue-800

b-blue-900

b-blue-1000

b-light-blue

b-light-blue-100

b-light-blue-200

b-light-blue-300

b-light-blue-400

b-light-blue-500

b-light-blue-600

b-light-blue-700

b-light-blue-800

b-light-blue-900

b-light-blue-1000

b-cyan

b-cyan-100

b-cyan-200

b-cyan-300

b-cyan-400

b-cyan-500

b-cyan-600

b-cyan-700

b-cyan-800

b-cyan-900

b-cyan-1000



Responsive breakpoints and hovering

Like all the Rollercss's property this property also supports reponsive and hovering state. Example : md:b-red-600 , lg:b-yellow-300 , hover:b-cyan etc.

Border

Border-width

Utilities for controlling the border width of an element.

Class

Properties

b-1

b-2

b-3

b-4

b-5

b-6

b-7

b-8

b-9

b-10



Responsive breakpoints and hovering

Like all the Rollercss's property this property also supports reponsive and hovering state. Example : md:b-3 , lg:b-6 , hover:b-9 etc.

Border

border-style

Utilities for controlling the border style of an element.

Class

Properties

b-none

b-solid

b-double

b-dashed

b-dotted



Responsive breakpoints and hovering

Like all the Rollercss's property this property also supports reponsive and hovering state. Example : md:b-dotted , lg:b-solid , hover:b-dashed etc.

Border

border-radius

Utilities for controlling the border radius of an element.

Class

Properties

round-0

round-1

round-2

round-3

round-4

round-5

round-6

round-7

round-8

round-9

round-10

round-full



Responsive breakpoints and hovering

Like all the Rollercss's property this property also supports reponsive and hovering state. Example : md:round-5 , lg:round-6 , hover:round-0 etc.

Outline

outline-color

Utilities for controlling the outline color of an element.

Color name

Color

o-transparent

o-black

o-white

o-gray

o-gray-100

o-gray-200

o-gray-300

o-gray-400

o-gray-500

o-gray-600

o-gray-700

o-gray-800

o-gray-900

o-gray-1000

o-brown

o-brown-100

o-brown-200

o-brown-300

o-brown-400

o-brown-500

o-brown-600

o-brown-700

o-brown-800

o-brown-900

o-brown-1000

o-orange

o-orange-100

o-orange-200

o-orange-300

o-orange-400

o-orange-500

o-orange-600

o-orange-700

o-orange-800

o-orange-900

o-orange-1000

o-red

o-red-100

o-red-200

o-red-300

o-red-400

o-red-500

o-red-600

o-red-700

o-red-800

o-red-900

o-red-1000

o-yellow

o-yellow-100

o-yellow-200

o-yellow-300

o-yellow-400

o-yellow-500

o-yellow-600

o-yellow-700

o-yellow-800

o-yellow-900

o-yellow-1000

o-green

o-green-100

o-green-200

o-green-300

o-green-400

o-green-500

o-green-600

o-green-700

o-green-800

o-green-900

o-green-1000

o-light-green

o-light-green-100

o-light-green-200

o-light-green-300

o-light-green-400

o-light-green-500

o-light-green-600

o-light-green-700

o-light-green-800

o-light-green-900

o-light-green-1000

o-pink

o-pink-100

o-pink-200

o-pink-300

o-pink-400

o-pink-500

o-pink-600

o-pink-700

o-pink-800

o-pink-900

o-pink-1000

o-purple

o-purple-100

o-purple-200

o-purple-300

o-purple-400

o-purple-500

o-purple-600

o-purple-700

o-purple-800

o-purple-900

o-purple-1000

o-blue

o-blue-100

o-blue-200

o-blue-300

o-blue-400

o-blue-500

o-blue-600

o-blue-700

o-blue-800

o-blue-900

o-blue-1000

o-light-blue

o-light-blue-100

o-light-blue-200

o-light-blue-300

o-light-blue-400

o-light-blue-500

o-light-blue-600

o-light-blue-700

o-light-blue-800

o-light-blue-900

o-light-blue-1000

o-cyan

o-cyan-100

o-cyan-200

o-cyan-300

o-cyan-400

o-cyan-500

o-cyan-600

o-cyan-700

o-cyan-800

o-cyan-900

o-cyan-1000



Responsive breakpoints and hovering

Like all the Rollercss's property this property also supports reponsive and hovering state. Example : md:o-red-600 , lg:o-yellow-300 , hover:o-cyan etc.

Outline

outline-width

Utilities for controlling the outline width of an element.

Class

Properties

o-1

o-2

o-3

o-4

o-5

o-6

o-7

o-8

o-9

o-10



Responsive breakpoints and hovering

Like all the Rollercss's property this property also supports reponsive and hovering state. Example : md:o-3 , lg:o-6 , hover:o-9 etc.

Outline

outline-style

Utilities for controlling the outline style of an element.

Class

Properties

o-none

o-solid

o-double

o-dashed

o-dotted



Responsive breakpoints and hovering

Like all the Rollercss's property this property also supports reponsive and hovering state. Example : md:o-dotted , lg:o-solid , hover:o-dashed etc.

Flexbox

Flex-direction

Utilities for controlling the flex direction property of an element.

Class

Properties

flex-col

flex-row

flex-col-reverse

flex-row-reverse



Responsive breakpoints and hovering

Like all the Rollercss's property this property also supports reponsive and hovering state. Example : md:flex-row , lg:flex-col , hover:flex-row etc.

Flexbox

Flex-wrapping

Utilities for controlling the flex wrapping property of an element.

Class

Properties

flex-wrap

flex-wrap-reverse

flex-no-wrap



Responsive breakpoints and hovering

Like all the Rollercss's property this property also supports reponsive and hovering state. Example : md:flex-wrap , lg:flex-wrap-reverse , hover:flex-no-wrap etc.

Flexbox

Align-items

Utilities for controlling the aalignment of items inside an element.

Class

Properties

items-center

items-start

items-end

items-stretch

items-base



Responsive breakpoints and hovering

Like all the Rollercss's property this property also supports reponsive and hovering state. Example : md:items-center , lg:items-start , hover:items-stretch etc.

Flexbox

Align-content

Utilities for controlling the aalignment of content inside an element.

Class

Properties

content-center

content-start

content-end

content-stretch

content-between

content-around



Responsive breakpoints and hovering

Like all the Rollercss's property this property also supports reponsive and hovering state. Example : md:content-center , lg:content-start , hover:content-around etc.

Flexbox

Align-self

Utilities for controlling the self aalignment inside an element.

Class

Properties

self-auto

self-center

self-start

self-end

self-stretch



Responsive breakpoints and hovering

Like all the Rollercss's property this property also supports reponsive and hovering state. Example : md:self-center , lg:self-start , hover:self-auto etc.

Flexbox

Justify-content

Utilities for controlling the justification of content inside an element.

Class

Properties

justify-center

justify-start

justify-end

justify-between

justify-around



Responsive breakpoints and hovering

Like all the Rollercss's property this property also supports reponsive and hovering state. Example : md:justify-start , lg:justify-end , hover:justify-centet etc.

Spacing

Margin

Utilities for controlling the margin for an element.

Class

Properties

m-0

m-auto

m-1

m-2

m-3

m-4

m-5

m-6

m-7

m-8

m-9

m-10

mt-0

mt-auto

mt-1

mt-2

mt-3

mt-4

mt-5

mt-6

mt-7

mt-8

mt-9

mt-10

mr-0

mr-auto

mr-1

mr-2

mr-3

mr-4

mr-5

mr-6

mr-7

mr-8

mr-9

mr-10

mb-0

mb-auto

mb-1

mb-2

mb-3

mb-4

mb-5

mb-6

mb-7

mb-8

mb-9

mb-10

ml-0

ml-auto

ml-1

ml-2

ml-3

ml-4

ml-5

ml-6

ml-7

ml-8

ml-9

ml-10

mx-0

mx-auto

mx-1

mx-2

mx-3

mx-4

mx-5

mx-6

mx-7

mx-8

mx-9

mx-10

my-0

my-auto

my-1

my-2

my-3

my-4

my-5

my-6

my-7

my-8

my-9

my-10



Responsive breakpoints and hovering

Like all the Rollercss's property this property also supports reponsive and hovering state. Example : md:mt-5 , lg:ml-8 , hover:mx-auto etc.

Spacing

Padding

Utilities for controlling the padding for an element.

Class

Properties

p-0

p-auto

p-1

p-2

p-3

p-4

p-5

p-6

p-7

p-8

p-9

p-10

pt-0

pt-auto

pt-1

pt-2

pt-3

pt-4

pt-5

pt-6

pt-7

pt-8

pt-9

pt-10

pr-0

pr-auto

pr-1

pr-2

pr-3

pr-4

pr-5

pr-6

pr-7

pr-8

pr-9

pr-10

pb-0

pb-auto

pb-1

pb-2

pb-3

pb-4

pb-5

pb-6

pb-7

pb-8

pb-9

pb-10

pl-0

pl-auto

pl-1

pl-2

pl-3

pl-4

pl-5

pl-6

pl-7

pl-8

pl-9

pl-10

px-0

px-auto

px-1

px-2

px-3

px-4

px-5

px-6

px-7

px-8

px-9

px-10

py-0

py-auto

py-1

py-2

py-3

py-4

py-5

py-6

py-7

py-8

py-9

py-10



Responsive breakpoints and hovering

Like all the Rollercss's property this property also supports reponsive and hovering state. Example : md:pt-5 , lg:pl-8 , hover:px-auto etc.

Sizing

Width

Utilities for controlling the width of an element.

Class

Properties

w-0

w-auto

w-full

w-screen

w-1

w-2

w-3

w-4

w-5

w-6

w-7

w-8

w-9

w-10

w-0%

w-10%

w-20%

w-30%

w-40%

w-50%

w-60%

w-70%

w-80%

w-90%

w-100%



Responsive breakpoints and hovering

Like all the Rollercss's property this property also supports reponsive and hovering state. Example : md:w-7 , lg:w-60% , hover:w-full etc.

Sizing

Max-width

Utilities for controlling the max-width of an element.

Class

Properties

max-w-0

max-w-auto

max-w-full

max-w-screen

max-w-1

max-w-2

max-w-3

max-w-4

max-w-5

max-w-6

max-w-7

max-w-8

max-w-9

max-w-10

max-w-0%

max-w-10%

max-w-20%

max-w-30%

max-w-40%

max-w-50%

max-w-60%

max-w-70%

max-w-80%

max-w-90%

max-w-100%



Responsive breakpoints and hovering

Like all the Rollercss's property this property also supports reponsive and hovering state. Example : md:max-w-7 , lg:max-w-60% , hover:max-w-full etc.

Sizing

Min-width

Utilities for controlling the min-width of an element.

Class

Properties

min-w-0

min-w-auto

min-w-full

min-w-screen

min-w-1

min-w-2

min-w-3

min-w-4

min-w-5

min-w-6

min-w-7

min-w-8

min-w-9

min-w-10

min-w-0%

min-w-10%

min-w-20%

min-w-30%

min-w-40%

min-w-50%

min-w-60%

min-w-70%

min-w-80%

min-w-90%

min-w-100%



Responsive breakpoints and hovering

Like all the Rollercss's property this property also supports reponsive and hovering state. Example : md:min-w-7 , lg:min-w-60% , hover:min-w-full etc.

Sizing

height

Utilities for controlling the height of an element.

Class

Properties

h-0

h-auto

h-full

h-screen

h-1

h-2

h-3

h-4

h-5

h-6

h-7

h-8

h-9

h-10

h-0%

h-10%

h-20%

h-30%

h-40%

h-50%

h-60%

h-70%

h-80%

h-90%

h-100%



Responsive breakpoints and hovering

Like all the Rollercss's property this property also supports reponsive and hovering state. Example : md:h-7 , lg:h-60% , hover:h-full etc.

Sizing

Max-height

Utilities for controlling the max-height of an element.

Class

Properties

max-h-0

max-h-auto

max-h-full

max-h-screen

max-h-1

max-h-2

max-h-3

max-h-4

max-h-5

max-h-6

max-h-7

max-h-8

max-h-9

max-h-10

max-h-0%

max-h-10%

max-h-20%

max-h-30%

max-h-40%

max-h-50%

max-h-60%

max-h-70%

max-h-80%

max-h-90%

max-h-100%



Responsive breakpoints and hovering

Like all the Rollercss's property this property also supports reponsive and hovering state. Example : md:max-h-7 , lg:max-h-60% , hover:max-h-full etc.

Sizing

Min-height

Utilities for controlling the min-height of an element.

Class

Properties

min-h-0

min-h-auto

min-h-full

min-h-screen

min-h-1

min-h-2

min-h-3

min-h-4

min-h-5

min-h-6

min-h-7

min-h-8

min-h-9

min-h-10

min-h-0%

min-h-10%

min-h-20%

min-h-30%

min-h-40%

min-h-50%

min-h-60%

min-h-70%

min-h-80%

min-h-90%

min-h-100%



Responsive breakpoints and hovering

Like all the Rollercss's property this property also supports reponsive and hovering state. Example : md:min-h-7 , lg:min-h-60% , hover:min-h-full etc.

Transform

Rotate

Utilities for controlling the rotation of an element.

Class

Properties

rotate-0

rotate-1

rotate-2

rotate-3

rotate-4

rotate-5

rotate-6

rotate-7

rotate-8

rotate-9

rotate-10

rotate-15

rotate-30

rotate-45

rotate-60

rotate-75

rotate-90

rotate-105

rotate-120

rotate-135

rotate-150

rotate-165

rotate-180

rotate-x-0

rotate-x-1

rotate-x-2

rotate-x-3

rotate-x-4

rotate-x-5

rotate-x-6

rotate-x-7

rotate-x-8

rotate-x-9

rotate-x-10

rotate-x-15

rotate-x-30

rotate-x-45

rotate-x-60

rotate-x-75

rotate-x-90

rotate-x-105

rotate-x-120

rotate-x-135

rotate-x-150

rotate-x-165

rotate-x-180

rotate-y-0

rotate-y-1

rotate-y-2

rotate-y-3

rotate-y-4

rotate-y-5

rotate-y-6

rotate-y-7

rotate-y-8

rotate-y-9

rotate-y-10

rotate-y-15

rotate-y-30

rotate-y-45

rotate-y-60

rotate-y-75

rotate-y-90

rotate-y-105

rotate-y-120

rotate-y-135

rotate-y-150

rotate-y-165

rotate-y-180

rotate-z-0

rotate-z-1

rotate-z-2

rotate-z-3

rotate-z-4

rotate-z-5

rotate-z-6

rotate-z-7

rotate-z-8

rotate-z-9

rotate-z-10

rotate-z-15

rotate-z-30

rotate-z-45

rotate-z-60

rotate-z-75

rotate-z-90

rotate-z-105

rotate-z-120

rotate-z-135

rotate-z-150

rotate-z-165

rotate-z-180

rotate-3d-0

rotate-3d-1

rotate-3d-2

rotate-3d-3

rotate-3d-4

rotate-3d-5

rotate-3d-6

rotate-3d-7

rotate-3d-8

rotate-3d-9

rotate-3d-10

rotate-3d-15

rotate-3d-30

rotate-3d-45

rotate-3d-60

rotate-3d-75

rotate-3d-90

rotate-3d-105

rotate-3d-120

rotate-3d-135

rotate-3d-150

rotate-3d-165

rotate-3d-180



Responsive breakpoints and hovering

Like all the Rollercss's property this property also supports reponsive and hovering state. Example : md:rotate-5 , lg:rotate-0 , hover:rotate-x-15 etc.

Transform

Scale

Utilities for controlling the scalling of an element.

Class

Properties

scale-0

scale-1

scale-2

scale-3

scale-4

scale-5

scale-6

scale-7

scale-8

scale-9

scale-10

scale-x-0

scale-x-1

scale-x-2

scale-x-3

scale-x-4

scale-x-5

scale-x-6

scale-x-7

scale-x-8

scale-x-9

scale-x-10

scale-y-0

scale-y-1

scale-y-2

scale-y-3

scale-y-4

scale-y-5

scale-y-6

scale-y-7

scale-y-8

scale-y-9

scale-y-10

scale-z-0

scale-z-1

scale-z-2

scale-z-3

scale-z-4

scale-z-5

scale-z-6

scale-z-7

scale-z-8

scale-z-9

scale-z-10

scale-3d-0

scale-3d-1

scale-3d-2

scale-3d-3

scale-3d-4

scale-3d-5

scale-3d-6

scale-3d-7

scale-3d-8

scale-3d-9

scale-3d-10



Responsive breakpoints and hovering

Like all the Rollercss's property this property also supports reponsive and hovering state. Example : md:scale-5 , lg:scale-z-8 , hover:scale-x-1 etc.