Re: Hyphenation is in the main repository
"Sebastian Geerken" <[email protected]>
| Newsgroups | gmane.comp.web.dillo.devel |
|---|---|
| Message-ID | <[email protected]> |
On Sat, Sep 15, Sebastian Geerken wrote: > On Sat, Sep 15, corvid wrote: > > The background colors aren't working on > > http://www.dillo.org/css_compat/index.html > > Fixed. Not completely: hyphens get no background. (Should be fixed soon.) But I found another problem: in the attached test page, you should see the word "Grundstücks..." in four different colors. The release version of dillo works correctly, but the latest version ignores style attributes for <span/>. Seems to be a problem independent of hyphenation. Sebastian _______________________________________________ Dillo-dev mailing list [email protected] http://lists.auriga.wearlab.de/cgi-bin/mailman/listinfo/dillo-dev
bg.html
(text/html, 1.1 KB)
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html>
<head>
<style type="text/css">
.c1 { background-color: #e0f000 }
.c2 { background-color: #8000c0 }
</style>
</head>
<body lang="de">
<p>Bla bla bla bla bla bla bla bla bla Bla bla bla bla bla
bla bla bla bla bla:
<a style="background-color: #ff0000">Grundstücksverkehrsgenehmigungszuständigkeitsübertragungsverordnung</a>
</p>
<p>Bla bla bla bla bla bla bla bla bla Bla bla bla bla bla
bla bla bla bla bla:
<a class="c1">Grundstücksverkehrsgenehmigungszuständigkeitsübertragungsverordnung</a>
</p>
<p>Bla bla bla bla bla bla bla bla bla Bla bla bla bla bla
bla bla bla bla bla:
<span style="background-color: #00c040">Grundstücksverkehrsgenehmigungszuständigkeitsübertragungsverordnung</span>
</p>
<p>Bla bla bla bla bla bla bla bla bla Bla bla bla bla bla
bla bla bla bla bla:
<span class="c2">Grundstücksverkehrsgenehmigungszuständigkeitsübertragungsverordnung</span>
</p>
</body>
</html>