| Summary: | float overflow dl elements | ||
|---|---|---|---|
| Product: | [Applications] konqueror | Reporter: | Holger Hees <holger.hees> |
| Component: | khtml | Assignee: | Konqueror Bugs <konqueror-bugs-null> |
| Status: | RESOLVED DUPLICATE | ||
| Severity: | normal | CC: | mathpup |
| Priority: | NOR | ||
| Version First Reported In: | unspecified | ||
| Target Milestone: | --- | ||
| Platform: | openSUSE | ||
| OS: | Linux | ||
| Latest Commit: | Version Fixed/Implemented In: | ||
| Sentry Crash Report: | |||
*** This bug has been marked as a duplicate of 135639 *** *** Bug 140531 has been marked as a duplicate of this bug. *** |
Version: (using KDE KDE 3.5.5) Installed from: SuSE RPMs OS: Linux the following sample does not work in khtml from kde 3.5.5. with khtml from kde 3.5.4 and all other browsers it works fine. the problem is near the 'overflow: auto' and 'float:right' attribute. when i change 'overflow: auto' to 'overflow: hidden' it works. <html> <head> <style type="text/css"> dl{ width: 100%; overflow: auto; background: url(http://www.axxus.de/static/templates/1/images/dot.gif) repeat-x; background-position:bottom; } dt {float: left;} dd {float: right;} </style> </head> <body> <dl> <dt>Left Float</dt> <dd>Right Float</dd> </dl> </body> </html>