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.
我正在寻找一个函数(也许 .Net-Framework 中有一个),我可以用它来验证不同版本(CSS 3.0、2.0)的 CSS 语法。它也可以是带有内置验证的 CSS 解析器。对于我可以使用的库或工具有什么建议吗?
看看 ExCSS,它可以解析 CSS 2.1 和 CSS 3,
https://github.com/TylerBrinks/ExCSS
为了验证,试试regex, 试试这个模式/([A-Za-z0-9 ]+:[A-Za-z0-9 ]+;$)+/i
/([A-Za-z0-9 ]+:[A-Za-z0-9 ]+;$)+/i