diff options
Diffstat (limited to '74/index.md')
-rw-r--r-- | 74/index.md | 29 |
1 files changed, 29 insertions, 0 deletions
diff --git a/74/index.md b/74/index.md new file mode 100644 index 0000000..7484da5 --- /dev/null +++ b/74/index.md @@ -0,0 +1,29 @@ +Title: Incorrect padding in span or other inline tags +Author: rodarima +Created: Sun, 04 Feb 2024 14:50:20 +0000 +State: open + +The following render test: + +```html +<!DOCTYPE html> +<html> + <head> + <title>Test span with padding CSS property</title> + <style> + span {padding: 20px; background: lightgreen} + p {margin-top: 40px} + </style> + </head> + <body> + <p>hello <span>world</span></p> + </body> +</html> +``` +Renders properly in Firefox as: + + +But not in Dillo: + + +The same problem seems to happen with other inline tags. |