Styling

Option 1

  • inline css with style attribute

style="background-color: red"

Option 2

  • JSX style

```
style={{backgroundColor: "red"}}
```

Option 3

  • Internal style element

  • with is:global declarations

```astro
       <style is:global>
         
         h1 {
            background: green;
         }

         </style>  
```

Option 4

  • src\styles directory

  • external mainStylesheet.css file

import "../styles/mainStylesheet.css"

Last updated