diff options
Diffstat (limited to '')
-rw-r--r-- | test/css/basic8.css | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/test/css/basic8.css b/test/css/basic8.css new file mode 100644 index 0000000..f467bef --- /dev/null +++ b/test/css/basic8.css @@ -0,0 +1,15 @@ + +.ribbon { + background-color: #5BC8F7; +} + +.ribbon::after { + content: "Look at this orange box."; + background-color: #FFBA10; + border-color: black; + border-style: dotted; +} + +.ribbon::after::selection { + content: 'Selected orange box.'; +} |