JavaFX Webview字母间距Bug?

时间:2013-12-02 09:13:55

标签: webview javafx letter-spacing

目前我正在使用JavaFx Webview加载HTML页面。但是加载HTML页面时会出现问题。它不会读取CSS中的letter-spacing-webkit-letter-spacing属性。 Chrome浏览器没问题。如何在JavaFx中使其工作?

<!doctype html>
<html>
    <head>
        <meta charset="utf-8"/>
        <title>test</title>
        <style>
            .text {
                letter-spacing: 20px;
            }
        </style>
    </head>
    <body>
        <div class="text">
            abcdefg
        </div>
    </body>
</html>

1 个答案:

答案 0 :(得分:1)

看起来这个属性在JavaFX / JDK 7中不受支持,但在JavaFX / JDK 8中适用于我。据我所知,JDK 8中修复的WebView部分渲染错误不会被移植到JDK 7,这似乎是一个这样的错误。

enter image description here

enter image description here

enter image description here