Skip to content

Latest commit

 

History

History
81 lines (68 loc) · 2.22 KB

composition.mdx

File metadata and controls

81 lines (68 loc) · 2.22 KB
title
Composition

Composition is one of the most powerful and useful patterns in Emotion. You can compose styles together by interpolating value returned from css in another style block.

// @live
/** @jsx jsx */
import { jsx, css } from '@emotion/react'

const base = css`
  color: hotpink;
`

render(
  <div
    css={css`
      ${base};
      background-color: #eee;
    `}
  >
    This is hotpink.
  </div>
)

With regular css, you can compose styles together using multiple class names, but this is very limited because the order that they're defined is the order they'll be applied. This can lead to hacks with !important and such to apply the correct styles.

For example, we have some base styles and a danger style, we want the danger styles to have precedence over the base styles but because base is in the stylesheet after danger its styles will override the styles defined in danger, as per the cascade rules. In regular CSS, you might do something to make danger take precedence over base like moving the danger class so it's defined later than base, or use !important, or abandon composition and rewrite the styles each time you need them.

// @live
render(
  <div>
    <style>
      {`
        .danger {
          color: red;
        }
        .base {
          background-color: lightgray;
          color: turquoise;
        }
      `}
      >
    </style>
    <p className="base danger">What color will this be?</p>
  </div>
)

With Emotion though, you can create styles and combine them.

// @live
/** @jsx jsx */
import { css, jsx } from '@emotion/react'

const danger = css`
  color: red;
`

const base = css`
  background-color: darkgreen;
  color: turquoise;
`

render(
  <div>
    <div css={base}>This will be turquoise</div>
    <div css={[danger, base]}>
      This will be also be turquoise since the base styles overwrite the danger
      styles.
    </div>
    <div css={[base, danger]}>This will be red</div>
  </div>
)

Using Emotion's composition, you don't have to think about the order that styles were created because the styles are merged in the order that you use them.