对于我的学校项目,我们需要验证CSS,但出于某种原因,它拒绝接受flex作为显示属性,并且显示方向作为属性。我不确定我是否犯了错误,或者这是否确实是正确的。
我甚至设置验证器是验证CSS3。
http://www.css-validator.org/validator
http://www.w3schools.com/cssref/css3_pr_flex-flow.asp
<anon>:27:22: 27:35 error: the type `[closure@<anon>:27:36: 29:10 tx_send:std::sync::mpsc::Sender<Message<'a>>]` does not fulfill the required lifetime [E0477]
<anon>:27 let handle = thread::spawn(move || {
^~~~~~~~~~~~~
note: type must outlive the static lifetime
error: aborting due to previous error
playpen: application terminated with error code 101
答案 0 :(得分:0)
http://www.css-validator.org/validator处的验证工具似乎是https://jigsaw.w3.org/css-validator/validator的克隆版。
当您运行后者并将级别设置为CSS级别3时,它会告诉您它没有发现任何错误。所以我想第一个验证器似乎以某种方式删除了CSS级别参数或基于旧的验证代码。无论如何你的代码很好。