diff options
Diffstat (limited to 'test/html/render/span-padding.html')
-rw-r--r-- | test/html/render/span-padding.html | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/test/html/render/span-padding.html b/test/html/render/span-padding.html new file mode 100644 index 00000000..15a9ec24 --- /dev/null +++ b/test/html/render/span-padding.html @@ -0,0 +1,13 @@ +<!DOCTYPE html> +<html> + <head> + <title>Test span with padding CSS property</title> + <style> + span {padding-right: 40px; background: lightgreen} + body {margin: 40px} + </style> + </head> + <body> + <span>hi</span> + </body> +</html> |