Styling
Option 1
inline css with
styleattribute
style="background-color: red"Option 2
JSX style
```
style={{backgroundColor: "red"}}
```Option 3
Internal
styleelementwith
is:globaldeclarations
```astro
<style is:global>
h1 {
background: green;
}
</style>
```Option 4
src\stylesdirectoryexternal
mainStylesheet.cssfile
Last updated