Created
October 31, 2022 07:43
-
-
Save devmnj/8cb2dd61da1cdc550207f183938efe4b to your computer and use it in GitHub Desktop.
Styling inner tags in (@html in) Svelte
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <script> | |
| let name = '<b>w</b>orld'; | |
| </script> | |
| <h1>Hello {@html name}!</h1> | |
| <style> | |
| :global(b){ | |
| color:blue; | |
| } | |
| </style> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment