Quantcast
Channel: Active questions tagged svelte - Stack Overflow
Viewing all articles
Browse latest Browse all 1541

Use svelte css class in @html

$
0
0

I have an api that returns html with classes, I want to know how I can use svelte style definition for those.

App.Svelte

<script>    let string = `<span class="status">ok</span>`;</script><p>{@html string}</p><style>    .status {        color: red    }</style>... {@html marked}

ReturnsUnused CSS selector (8:1)


Viewing all articles
Browse latest Browse all 1541

Trending Articles