JavaFx CSS在[15,21]解析意外的令牌':'时出错

时间:2017-07-19 11:04:48

标签: java css javafx

我无法解释为什么第21行出现错误时第21行没有此类错误。清理和重建无效。

我的css文件:

#i-will-do-it
{
    -fx-fill: #3AA8C1; /* moonstone */
  /*  -fx-fill: #6F2DA8; /* Grape */
}

#background
{
    -fx-background-color: #353839; /* Onyx */
}

#minute
{
    -fx-stroke: #3F26BF /* Ultramarine Blue */
    -fx-stroke-width : 3; /* THIS IS LINE 15 */
}

#seconds
{
    -fx-stroke: #FD0E35; /* scarlet */
    -fx-stroke-width : 0.8; /* THIS IS LINE 21 */
}

#hour
{
    -fx-stroke: #3F26BF; /* Ultramarine Blue */
    -fx-stroke-width : 5;
}

你可以看到我的第15行没有变成蓝色: enter image description here

1 个答案:

答案 0 :(得分:2)

第14行末尾缺少分号。您看到的错误可能与此有关。