Runtime
UnoCSS runtime provide a CDN build that runs the UnoCSS engine right in the browser. It will detect the DOM changes and generate the styles on the fly.
Usage
Add the following line to your index.html
:
<script src="https://cdn.jsdelivr.net/npm/@unocss/runtime"></script>
<script src="https://cdn.jsdelivr.net/npm/@unocss/runtime"></script>
To configure UnoCSS (optional):
<script>
// pass unocss options
window.__unocss = {
rules: [
// custom rules...
],
presets: [
// custom presets...
],
// ...
}
</script>
<script>
// pass unocss options
window.__unocss = {
rules: [
// custom rules...
],
presets: [
// custom presets...
],
// ...
}
</script>
By default, the Uno preset is be applied.
The runtime does not come with preflights, if you want to have style resets, you can either add your own, or use one from Reset package.
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/@unocss/reset/normalize.min.css">
<!-- or -->
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/@unocss/reset/tailwind.min.css">
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/@unocss/reset/normalize.min.css">
<!-- or -->
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/@unocss/reset/tailwind.min.css">
Builds
Several builds are available for different use cases.
Core
Without any preset:
<script src="https://cdn.jsdelivr.net/npm/@unocss/runtime/core.global.js"></script>
<script src="https://cdn.jsdelivr.net/npm/@unocss/runtime/core.global.js"></script>
Uno (default)
With @unocss/preset-uno
preset:
<script src="https://cdn.jsdelivr.net/npm/@unocss/runtime/uno.global.js"></script>
<script src="https://cdn.jsdelivr.net/npm/@unocss/runtime/uno.global.js"></script>
Attributify
With @unocss/preset-uno
and @unocss/preset-attributify
presets:
<script src="https://cdn.jsdelivr.net/npm/@unocss/runtime/attributify.global.js"></script>
<script src="https://cdn.jsdelivr.net/npm/@unocss/runtime/attributify.global.js"></script>
Mini
With @unocss/preset-mini
and @unocss/preset-attributify
preset:
<script src="https://cdn.jsdelivr.net/npm/@unocss/runtime/mini.global.js"></script>
<script src="https://cdn.jsdelivr.net/npm/@unocss/runtime/mini.global.js"></script>
Bundler Usage
npm i @unocss/runtime
npm i @unocss/runtime
import initUnocssRuntime from '@unocss/runtime'
initUnocssRuntime({ /* options */ })
import initUnocssRuntime from '@unocss/runtime'
initUnocssRuntime({ /* options */ })
Preventing FOUC
Since UnoCSS runs after the DOM is present, there can be a "flash of unstyled content" (FOUC) which may leads the user to see the page as unstyled.
Use un-cloak
attribute with CSS rules such as [un-cloak] { display: none }
to hide the unstyled element until UnoCSS applies the styles for it.
[un-cloak] {
display: none;
}
[un-cloak] {
display: none;
}
<div class="text-blue-500" un-cloak>
This text will only be visible in blue color.
</div>
<div class="text-blue-500" un-cloak>
This text will only be visible in blue color.
</div>