...

/

Using the Built-in CSS Support

Using the Built-in CSS Support

Learn about styling GatsbyJS sites using the built-in CSS support.

Overview

We’ve been using the conventional inline styling method to style our project all this time. We style components by using defined objects with the style rules as key-value pairs.

import React from "react"

const Text = () => <p style={styles.paragraph}> paragraph one </p>

const styles = {
  paragraph: { color:
...