gpt4 book ai didi

html - W3 CSS 验证错误解析错误

转载 作者:行者123 更新时间:2023-11-28 16:36:42 25 4
gpt4 key购买 nike

当我尝试验证以下代码时:

   .cd-stretchy-nav ul a { (line 186)
position: relative;
display: block;
height: 50px;
line-height: 50px;
padding: 0 calc(1em + 60px) 0 1em;
color: white;
opacity: 1;
font-size: 1rem;
-webkit-transition: color 0.2s;
-moz-transition: color 0.2s;
transition: color 0.2s;
}

.cd-stretchy-nav ul a::after { (line 200)
content: '';
position: absolute;
height: 16px;
width: 16px;
right: 22px;
top: 50%;
-webkit-transform: translateY(-50%) scale(0);
-moz-transform: translateY(-50%) scale(0);
-ms-transform: translateY(-50%) scale(0);
-o-transform: translateY(-50%) scale(0);
transform: translateY(-50%) scale(0);
}

我收到这些错误。

191 .cd-stretchy-nav ul a Parse Error calc(1em + 60px) 0 1em;

200 解析错误 [: white;不透明度:1;字体大小:1rem; -webkit-transition: color 0.2s; -moz-transition:颜色0.2s;过渡:颜色0.2s; } .cd-stretchy-nav ul a::after]

究竟是什么导致了这些错误?代码在网站上运行良好。

最佳答案

问题是W3C提供的CSS3验证服务有bug。参见 https://www.w3.org/Bugs/Public/show_bug.cgi?id=18913获取更多信息。

据我所知,您的 CSS calc 值没有任何问题,第二个错误可能是该服务的假阴性响应的结果。

关于html - W3 CSS 验证错误解析错误,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/34400875/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com