我无法解释为什么第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;
}
答案 0 :(得分:2)
第14行末尾缺少分号。您看到的错误可能与此有关。