TitleIncorrect padding in span or other inline tags
Authorrodarima
CreatedSun, 04 Feb 2024 14:50:20 +0000
State open

The following render test:

<!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: image

But not in Dillo: image

The same problem seems to happen with other inline tags.