diff --git a/tests/src/simple.html b/tests/src/simple.html
index 5ead974..f595dd1 100644
--- a/tests/src/simple.html
+++ b/tests/src/simple.html
@@ -4 +4,20 @@
-
+ .box {
+ width: 500px;
+ height: 500px;
+
+ padding: 50px;
+ background-size: auto;
+ background-position-x: center;
+ background-position-y: center;
+ background-origin: border-box;
+ background-color: #000;
+ background-repeat: round;
+
+
+ border: dashed 10px red;
+ border-left: dashed 50px red;
+ color: white;
+ }
+ .box:hover {
+ font-family: monospace;
+ }
hello