We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 3b05f8d + 8733fdb commit ed984b9Copy full SHA for ed984b9
README.md
@@ -8,7 +8,6 @@
8
Boldly go where no CSS author has gone before...
9
10
Here's a taster:
11
-
12
```
13
#clickMe:click {
14
body {
@@ -17,6 +16,22 @@ Here's a taster:
17
16
}
18
19
+Example of a component (because you love components):
20
+```
21
+button:click {
22
+ render-after-end: "<hello-world></hello-world>";
23
+}
24
+
25
+@component hello-world private {
26
+ html {
27
+ <p>Hello world</p>
28
+ }
29
+ p:click {
30
+ alert: "Why are you clicking me, you crazy!";
31
32
33
34
35
Ultra-fast. No pre-processing. No virtual DOM. Runs in real-time in the browser.<br>
36
All DOM events are supported, plus CSS commands up to level 4 (if browser supported).<br>
37
Works on chromium browsers (Chrome, Edge, Opera, etc.) and Firefox. (ES6+)
0 commit comments