理解 if >0.2% 的含义并找到支持的 IE 版本
Understanding the meaning if >0.2% and finding the IE versions supported
我的 package.json 中的 browserslist
部分说:
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
">0.2%",
"not dead",
"not op_mini all"
]
}
我有一个问题。我知道 ,
读作 or
但如何读 >0.2%
?这是什么意思?另外,如果我想知道IE版本和它支持的浏览器,我怎么知道这个?
您可以使用 https://browserl.ist/ 来检查某个查询支持哪些浏览器。
例如输入 >0.2%
它会告诉你具体包含哪些浏览器
LE:
为您查询
">0.2%",
"not dead",
"not op_mini all"
您可以使用https://browserl.ist/?q=%22%3E0.2%25%22%2C%22not+dead%22%2C%22not+op_mini+all%22
我的 package.json 中的 browserslist
部分说:
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
">0.2%",
"not dead",
"not op_mini all"
]
}
我有一个问题。我知道 ,
读作 or
但如何读 >0.2%
?这是什么意思?另外,如果我想知道IE版本和它支持的浏览器,我怎么知道这个?
您可以使用 https://browserl.ist/ 来检查某个查询支持哪些浏览器。
例如输入 >0.2%
它会告诉你具体包含哪些浏览器
LE:
为您查询
">0.2%",
"not dead",
"not op_mini all"
您可以使用https://browserl.ist/?q=%22%3E0.2%25%22%2C%22not+dead%22%2C%22not+op_mini+all%22