I'm making a web component in Javascript and called it NavBar, all the style for the new custom HTML tag is in one CSS file, which name is "style.css". I tried to import it in this way and it didn't work:
this.innerHTML = `
<style>
@import "style.css";
</style>
<nav>
...code...
</nav>
`;
}
Can I know why this way didn't work, and what is the right way to import the Stylesheet? Thanks.