Styling
Option 1
inline css with
style
attribute
style="background-color: red"
Option 2
JSX style
```
style={{backgroundColor: "red"}}
```
Option 3
Internal
style
elementwith
is:global
declarations
```astro
<style is:global>
h1 {
background: green;
}
</style>
```
Option 4
src\styles
directoryexternal
mainStylesheet.css
file
import "../styles/mainStylesheet.css"
Last updated