Animatable CSS Properties List: Every One You Should Know

Download Now: An Intro to HTML & CSS for Marketers Guide
Maddy Osman
Maddy Osman

Published:

When CSS property values are set to change over a specified period of time, the element is animated on the page. Therefore, CSS animatable properties are properties that can gradually change from one value to another, such as size, number, color, or percentage.

list of css animatable properties

Download Now: 25 Free HTML & CSS Hacks

CSS animations are just like transitions, only with better control and a wider variety of options.

We've compiled an A-Z list of CSS animatable properties along with a demo for each. Let's look at the various animations you can create with CSS on your site.

Table of Contents

If you aren't familiar with animating CSS properties, here's a 15-minute that can provide a quick crash course:

List of CSS Animatable Properties

Here's a list of all the properties you can animate with CSS, what they do, and an example of each.

Note: Open the animation demos in in the incognito window of your browser. 

background

This is shorthand for the property used for setting the page background. It lets you display up to eight properties: 

 

 

background-image:;
background-position:;
background-size:;
background-repeat:;
background-origin:;
background-clip:;
background-attachment:;
background-color:;
 

Some of these properties are animatable, which we'll dive into in more detail below.

See the Pen background by HubSpot (@hubspot) on CodePen.

background-color

This property helps you set the background color of an element, meaning the space occupied by an element, including the padding and border but excluding the margin.

Color values can be specified in different ways:

  • Hexadecimal in the format of #rrggbb
  • RGB in the format of rgb (red, green, blue)
  • RGBA in the format of rgba (red, green, blue, alpha)
  • HSL in the format of hsl (hue, saturation, lightness)
  • HSLA in the format of hsla (hue, saturation, lightness, alpha)
  • Predefined. The CSS and HTML specification includes 140 predefined color names you can use.
  • The currentcolor keyword can be used to represent the value of a color property. When used, elements that don't have a property value can inherit the color by default.

For this example, we can use the background-color property to change the color from red to purple to blue.

See the Pen background color by HubSpot (@hubspot) on CodePen.

background-position

This is used to set the starting position of a background image. Values include left top, left center, left bottom, right top, right center, right bottom, center top, center center, and center bottom.

CSS animatable properties example: background

In this example, the background position determines where the animation will start and end.

Animation demo

background-size

This is used to set the size of the background image. Values include auto, length, percentage, cover, and contain. In this example, we can split the background into six images by setting the background-size to 50%.

Animation demo

border

This helps you style the borders of an element. It's a shorthand property for: border-width, border-style, and border-color. When the border isn't specified, the text color is applied.

In this example, we can use the border property to change both the color and style of the border throughout the animation. 

See the Pen border by HubSpot (@hubspot) on CodePen.

border-bottom

This is used to style the bottom border. It's a shorthand property for: border-bottom-width, border-bottom-style, and border-bottom-color.

In this example, we can use the border-bottom property to only animate the bottom border of the div. 

Animation demo

border-bottom-color

This sets the color of the bottom border of an element. Note that you need to have a border before you can apply color to it. Thus, always define the border-style or border-bottom-style before border-bottom-color.

In this example, we can use this property to target only the bottom border color of the div.

Animation demo

border-bottom-left-radius

This adds rounded borders to the corners of the element. It lets you define the radius of the bottom left corner. Values include length and percentage.

css animatable properties list: border-radius-left

In this example, notice how the left bottom corner curls inward toward the end of the animation.

Animation demo

border-bottom-right-radius

This defines the radius of the bottom right corner.

Animation demo

border-bottom-width

This sets the width for the bottom border. It should be defined after the border is created, after border-style or border-bottom-style properties. Values include medium, thin, thick, and length.

Here is one example where the border thickens during the animation.

Animation demo

border-color

This sets the border color. It can be defined by up to four values in the format of border-color: color1 color2 color3 color4;

If it has four values, each side of the border gets the specified color.

If it has three values, the top and bottom borders get the first and last specified color, while the right and left borders are styled with the middle color.

If it has two values, the top and bottom colors take the first, while the right and left borders take the second color.

If it has only one value, all borders have the specified color.

See the Pen border-bottom-width by HubSpot (@hubspot) on CodePen.

border-left

This styles the left border. It's a shorthand property for: border-left-width, border-left-style, and border-left-color.

In this example, we can use the border-left property to style the color and width of the border. 

Animation demo

border-left-color

This sets the color of the left border. Values include color and transparency.

In this example, we use the border-left-color property to change the border from blue to red.

Animation demo

border-left-width

This sets the width for the left border. Values include medium, thin, thick, and length.

CSS animatable properties list - border-left

In this example, we double the size of the border using the width property.

Animation demo

border-right

This styles the right border. It's a shorthand property for: border-right-width, border-right-style, and border-right-color.

See the Pen Border-left by HubSpot (@hubspot) on CodePen.

border-right-color

This sets the border for the right color.

Animation demo

border-right-width

This sets the width for the right border.

Animation demo

border-spacing

This defines the distance between borders of cells in a table.

In this example, we can use the border-spacing property to change the distance between the red boxes.

See the Pen Border-spacing by HubSpot (@hubspot) on CodePen.

border-top

This styles the top border. It's a shorthand property for: border-top-width, border-top-style, and border-top-color.

Animation demo

border-top-color

This sets the color of the top border.

Animation demo

border-top-left-radius

This defines the top left corner radius.

Notice how in this example the top-left corner of the box changes shape during the animation.

Animation demo

border-top-right-radius

This defines the top right corner radius.

CSS animatable properties list - border-top-right

Notice how in this example the top-right corner of the box changes shape during the animation.

Animation demo

border-top-width

This sets the width of the top border.

Animation demo

bottom

This is used to position an element vertically. It only affects positioned elements.

When the position is:

  • position: absolute; or position: fixed; the bottom edge of the element is set to a unit above or below the bottom edge of the nearest positioned ancestor.
  • position: relative; the bottom edge moves above or below its normal position.
  • position: sticky; the bottom property behaves like it's in a relative or fixed position when the element is inside and outside a viewport, respectively.
  • position:static; the property has no effect.

See the Pen Bottom by HubSpot (@hubspot) on CodePen.

box-shadow

This adds shadows to an element. Values include none, horizontal offset, vertical offset, blur, spread, and color.

Animation demo

clip

This lets you clip an image that's larger than its containing element. Values include auto and shape.

Animation demo

color

This defines the color of the text, like in the example below. 

See the Pen Border-top-width by HubSpot (@hubspot) on CodePen.

column-count

This divides an element into columns. Values include number and auto. In this example, we can split the columns of text into several smaller columns.

Animation demo

column-gap

This sets the gap between columns. Values include length and normal.

Animation demo

column-rule

This defines the width, style, and color of the rule between columns. It's a shorthand property for: column-rule-width, column-rule-style, and column-rule-color.

See the Pen column-rule by HubSpot (@hubspot) on CodePen.

column-rule-color

This sets the color of the rule between columns. In the example below, we can use it change the colors from red to blue to purple.

Animation demo

column-rule-width

This sets the width of the rule between columns. Values include medium, thin, thick, and length.

Animation demo

column-width

This sets the column width. Values include auto and length.

Animation demo

columns

This sets the column width and count. It's a shorthand property for: column-width and column-count.

Animation demo

filter

This sets visual effects to an element, such as blur and saturation. Values include blur, brightness, contrast, and grayscale. 

CSS animatable properties list - filter

For this example, if you hover over the box, it will change colors from red to gray.

Animation demo

flex

This sets the flexible length on flexible items. It's a shorthand property for: flex-grow, flex-shrink, and flex-basis.

In this example, when you hover ove the box, it changes size.

  See the Pen   Untitled by HubSpot (@hubspot)   on CodePen.

flex-basis

This defines the initial length of a flexible item. Values include: number and auto.

Animation demo

flex-grow

This specifies how much an item will grow in comparison to other flexible items in the container.

Animation demo

flex-shrink

This specifies how much an item will shrink compared to the other flexible items in the container.

Animation demo

font

This styles the text font. It's a shorthand property for: font-style, font-variant, font-weight, font-size/line-height, and font-family.

For this example, hover over the text to change its style and weight.

Animation demo

font-size

This sets the size of the font. Values include medium, xx-small, x-small, small, large, x-large, xx-large, smaller, larger, length, and percentage.

See the Pen Font-size by HubSpot (@hubspot) on CodePen.

font-size-adjust

This lets you control the size of the font displayed by the browser in case the first selected font isn't available.

Animation demo

font-stretch

This lets you make the text narrower or wider. Values include normal, expanded, and condensed.

Animation demo

font-weight

This sets the thinness or thickness of the font. Values include normal, bold, bolder, lighter, and number. 

In this example, you can hover over the text to make it bolder.

Animation demo

grid

This styles the grid layout. It's a shorthand property for: grid-template-rows, grid-template-columns, grid-template-areas, grid-auto-rows, grid-auto-columns, and grid-auto-flow.

See the Pen Grid by HubSpot (@hubspot) on CodePen.

grid-area

This defines the size and location of an item in a grid layout. It's a shorthand property for: grid-row-start, grid-column-start, grid-row-end, and grid-column-end.

Animation demo

grid-auto-columns

This sets the size for columns in a grid container. It affects columns that don't have a specified size. Values include length, percentage, auto, and fit-content.

Animation demo

grid-auto-flow

This determines how auto-placed items are added into the grid. Values include row, column, dense, row-dense, and column-dense. In this example, if you hover over the boxes, it will stack them on top of each other.

Animation demo

grid-auto-rows

This sets the size of rows. Values include auto, max-content, min-content, and length.

Animation demo

CSS animation properties - grid auto rows

grid-column

This defines the size and location of a grid item. It's a shorthand property for: grid-column-start and grid-column-end.

Animation demo

grid-column-end

This defines the number of columns a grid item will span. Values include auto, span, and column-line. Hover over the box in this example to move it between columns. 

Animation demo

grid-column-gap

This sets the size of the gap between columns. Hover over the boxes in this example to widen the gap between them. 

See the Pen Grid-Column_Gap by HubSpot (@hubspot) on CodePen.

grid-column-start

This specifies the column-line on which the grid item will start.

Animation demo

grid-gap

This specifies the size of the gap between rows and columns. It's a shorthand property for: grid-row-gap and grid-column-gap.

Animation demo

grid-row

This sets the size and location of a grid item. It's a shorthand property for: grid-row-start and grid-row-end.

Animation demo

grid-row-end

This defines the number of rows a grid item will span.

Animation demo

grid-row-gap

This sets the gap between rows.

Animation demo

grid-row-start

This determines which row-line the grid item will start.

Animation demo

grid-template

This sets up the grid template. It's a shorthand property for: grid-template-rows, grid-template-columns, and grid-template-areas.

See the Pen Grid-Template by HubSpot (@hubspot) on CodePen.

grid-template-areas

This specifies the areas inside the grid layout.

Animation demo

grid-template-columns

This defines the number and size of columns in a layout. In this example, notice how the box jumps between columns. 

Animation demo

grid-template-rows

This defines the number and size of rows in a layout. In this example, notice how the box jumps between rows while changing colors at the same time. 

Animation demo

height

This defines the height of an element. This height doesn't include margins, borders, and padding. Values include auto, length, and percentage.

Animation demo

left

This sets the left edge of positioned elements. It affects the horizontal position of an element.

Animation demo

letter-spacing

This sets the distance between characters in text.

Animation demo

CSS animatable properties list - letter spacing

line-height

This sets the height of a line.

Animation demo

margin

This sets the margins for an element. It's a shorthand property for: margin-top, margin-right, margin-bottom, and margin-left. The margin can be specified by four, three, two, or one value.

See the Pen Margin by HubSpot (@hubspot) on CodePen.

margin-bottom

This sets the bottom margin of an element. In this example, bottom margin increases then decreases moving the text below the div element.

Animation demo

margin-left

This sets the left margin of an element.

Animation demo

margin-right

This sets the right margin of an element.

Animation demo

margin-top

This sets the top margin of an element. In this example, the top margin increases pushing the green circle down on the page.

Animation demo

max-height

This defines the maximum height of an element. In this example, the max-height changes causing the element to grow and shrink.

Animation demo

max-width

This defines the maximum width of an element. In this example, the max-width changes causing the element to grow and shrink.

Animation demo

CSS animation properties - max-width

min-height

This defines the minimum height of an element. In this example, the element shrinks and grows vertically as the min-height changes.

Animation demo

min-width

This defines the minimum width of an element. In this example, the element shrinks and grows horizontally as the min-width changes.

See the Pen Min-Width by HubSpot (@hubspot) on CodePen.

object-position

This works in conjunction with object-fit to define the position of an <img> or <video> inside its own content box using x/y coordinates.

Animation demo

opacity

This sets the degree of opacity for an element. In this example, we can see how the box slowly fades throughout the animation.

Animation demo

order

This defines the order of a flexible item relative to other flexible items in the container.

Animation demo

outline

This sets the outline around an element. It's a shorthand property for: outline-width, outline-style, and outline-color.

See the Pen Order by HubSpot (@hubspot) on CodePen.

outline-color

This defines the color of an outline. In this example, we'll change the outline of the box from blue to green to violet.

Animation demo

outline-offset

This adds a space between an outline and the border of an element. For this example, we can make the outline of the box move in and out with outline-offset.

Animation demo

CSS animation properties - outline offset

outline-width

This sets the width of an outline. Notice how the blue outline thickens throughout this animation.

Animation demo

padding

This adds padding to an element. This is the space between the content and the border. It's a shorthand property for: padding-top, padding-right, padding-bottom, and padding-left. It can have one to four values.

See the Pen Padding by HubSpot (@hubspot) on CodePen.

padding-bottom

This defines the bottom padding of an element. In this example, notice how the bottom of the box stretches and shrinks during the animation.

Animation demo

padding-left

This defines the left padding of an element.

Animation demo

padding-right

This defines the right padding of an element.

Animation demo

padding-top

This defines the top padding of an element.

Animation demo

perspective

This gives perspective to 3D-positioned elements. In this example, we'll use perspective to make the box appears as if it is spinning on the page.

Animation demo

perspective-origin

This defines the position of the viewer relative to the 3D object.

See the Pen Perspective Origin by HubSpot (@hubspot) on CodePen.

right

This defines the right edge of a positioned element. It affects the horizontal position and has no effect on non-positioned elements.

Animation demo

text-decoration-color

This specifies the color for overlines, underlines, and linethroughs.

Animation demo

text-indent

This sets the indentation of the first line in a block of text.

Animation demo

text-shadow

This adds a shadow to your text. Values include horizontal shadow, vertical shadow, blur radius, and color.

See the Pen Text-Shadow by HubSpot (@hubspot) on CodePen.

top

This defines the top edge of a positioned element. It affects the vertical position and has no effect on non-positioned elements.

Animation demo

transform

This applies 2D or 3D effects to an element. You can move, rotate, scale, or skew an element alongside other capabilities.

Animation demo

transform-origin

This lets you change the position of a transformed element. In this example, we changed the position so the box spins on the page.

Animation demo

css animatable properties - transform

vertical-align

This defines the vertical alignment of an element.

See the Pen Vertical-align by HubSpot (@hubspot) on CodePen.

visibility

This determines the visibility of an element. You can make elements appear, disappear, and reappear with this property.

Animation demo

width

This sets the width of an element. This doesn't include margins, borders, or padding.

Animation demo

word-spacing

This defines the white space between words. In this example, we increased the space between the words in the sentence.

Animation demo

z-index

This sets an element's stack order. Greater stack order elements appear before lower stack order elements.

See the Pen z-index by HubSpot (@hubspot) on CodePen.

CSS Animatable Properties (A - Z)

There you have it! A list of all the animatable properties within CSS. These will help make your website and presentations more lively and interactive.

New Call-to-action

 

Topics: CSS Animation

Related Articles

We're committed to your privacy. HubSpot uses the information you provide to us to contact you about our relevant content, products, and services. You may unsubscribe from these communications at any time. For more information, check out our Privacy Policy.

Learn more about HTML and CSS and how to use them to improve your website.

CMS Hub is flexible for marketers, powerful for developers, and gives customers a personalized, secure experience

START FREE OR GET A DEMO