Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有以下CSS:
body { width: calc(700px + 2 * 4rem); } .someclass { margin: calc(2rem - 2px) 0; }
当我通过 W3C CSS 验证运行它时,我得到
值错误:宽度解析错误 + 2 * 4rem) 值错误:边距解析错误 - 2px) 0
这是什么原因造成的?我使用的所有单位calc()都是长度单位,calc()应该能够处理它。
calc()
这是 w3 css 验证器中的一个已知错误:
https://www.w3.org/Bugs/Public/show_bug.cgi?id=18913