css-sel3.json 8.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437
  1. {
  2. "title":"CSS3 selectors",
  3. "description":"Advanced element selection using selectors including: `[foo^=\"bar\"]`, `[foo$=\"bar\"]`, `[foo*=\"bar\"]`, `:root`, `:nth-child()`, `:nth-last-child()`, `:nth-of-type()`, `:nth-last-of-type()`, `:last-child`, `:first-of-type`, `:last-of-type`, `:only-child`, `:only-of-type`, `:empty`, `:target`, `:enabled`, `:disabled`, `:checked`, `:not()`, `~` (general sibling)",
  4. "spec":"https://www.w3.org/TR/css3-selectors/",
  5. "status":"rec",
  6. "links":[
  7. {
  8. "url":"https://www.quirksmode.org/css/selectors/",
  9. "title":"Detailed support information"
  10. },
  11. {
  12. "url":"http://www.css3.info/selectors-test/",
  13. "title":"Automated CSS3 selector test"
  14. },
  15. {
  16. "url":"http://selectivizr.com",
  17. "title":"Selectivizr: Polyfill for IE6-8"
  18. },
  19. {
  20. "url":"https://www.webplatform.org/docs/css/selectors",
  21. "title":"WebPlatform Docs"
  22. }
  23. ],
  24. "bugs":[
  25. {
  26. "description":"Android 4.3 and lower (together with older WebKit browsers) [have issues](https://css-tricks.com/webkit-sibling-bug/) when combining pseudo classes with adjacent or general sibling selectors."
  27. },
  28. {
  29. "description":"iOS 8 Safari has [issues with nth-child](https://stackoverflow.com/questions/26032513/ios8-safari-after-a-pushstate-the-nth-child-selectors-not-works).\r\n"
  30. },
  31. {
  32. "description":"IE9-IE11 supports `:empty` but will not repaint/relayout the page if content is added/removed from an `:empty` selected element"
  33. },
  34. {
  35. "description":"iOS 9 has a bug in WebViews (not Safari) with the [CSS sibling selector](https://forums.developer.apple.com/thread/16449)"
  36. },
  37. {
  38. "description":"IE11 has issues with [last-of-type with custom elements](https://stackoverflow.com/questions/38666233/last-of-type-doesnt-work-with-custom-elements-in-ie11-and-edge#38669965)"
  39. },
  40. {
  41. "description":"IE does not recognize the `:disabled` pseudo-class selector for `<fieldset disabled>`"
  42. }
  43. ],
  44. "categories":[
  45. "CSS3"
  46. ],
  47. "stats":{
  48. "ie":{
  49. "5.5":"n",
  50. "6":"p",
  51. "7":"a #1",
  52. "8":"a #1",
  53. "9":"y",
  54. "10":"y",
  55. "11":"y"
  56. },
  57. "edge":{
  58. "12":"y",
  59. "13":"y",
  60. "14":"y",
  61. "15":"y",
  62. "16":"y",
  63. "17":"y",
  64. "18":"y",
  65. "79":"y",
  66. "80":"y",
  67. "81":"y",
  68. "83":"y",
  69. "84":"y",
  70. "85":"y",
  71. "86":"y"
  72. },
  73. "firefox":{
  74. "2":"n",
  75. "3":"n",
  76. "3.5":"y",
  77. "3.6":"y",
  78. "4":"y",
  79. "5":"y",
  80. "6":"y",
  81. "7":"y",
  82. "8":"y",
  83. "9":"y",
  84. "10":"y",
  85. "11":"y",
  86. "12":"y",
  87. "13":"y",
  88. "14":"y",
  89. "15":"y",
  90. "16":"y",
  91. "17":"y",
  92. "18":"y",
  93. "19":"y",
  94. "20":"y",
  95. "21":"y",
  96. "22":"y",
  97. "23":"y",
  98. "24":"y",
  99. "25":"y",
  100. "26":"y",
  101. "27":"y",
  102. "28":"y",
  103. "29":"y",
  104. "30":"y",
  105. "31":"y",
  106. "32":"y",
  107. "33":"y",
  108. "34":"y",
  109. "35":"y",
  110. "36":"y",
  111. "37":"y",
  112. "38":"y",
  113. "39":"y",
  114. "40":"y",
  115. "41":"y",
  116. "42":"y",
  117. "43":"y",
  118. "44":"y",
  119. "45":"y",
  120. "46":"y",
  121. "47":"y",
  122. "48":"y",
  123. "49":"y",
  124. "50":"y",
  125. "51":"y",
  126. "52":"y",
  127. "53":"y",
  128. "54":"y",
  129. "55":"y",
  130. "56":"y",
  131. "57":"y",
  132. "58":"y",
  133. "59":"y",
  134. "60":"y",
  135. "61":"y",
  136. "62":"y",
  137. "63":"y",
  138. "64":"y",
  139. "65":"y",
  140. "66":"y",
  141. "67":"y",
  142. "68":"y",
  143. "69":"y",
  144. "70":"y",
  145. "71":"y",
  146. "72":"y",
  147. "73":"y",
  148. "74":"y",
  149. "75":"y",
  150. "76":"y",
  151. "77":"y",
  152. "78":"y",
  153. "79":"y",
  154. "80":"y",
  155. "81":"y",
  156. "82":"y",
  157. "83":"y"
  158. },
  159. "chrome":{
  160. "4":"y",
  161. "5":"y",
  162. "6":"y",
  163. "7":"y",
  164. "8":"y",
  165. "9":"y",
  166. "10":"y",
  167. "11":"y",
  168. "12":"y",
  169. "13":"y",
  170. "14":"y",
  171. "15":"y",
  172. "16":"y",
  173. "17":"y",
  174. "18":"y",
  175. "19":"y",
  176. "20":"y",
  177. "21":"y",
  178. "22":"y",
  179. "23":"y",
  180. "24":"y",
  181. "25":"y",
  182. "26":"y",
  183. "27":"y",
  184. "28":"y",
  185. "29":"y",
  186. "30":"y",
  187. "31":"y",
  188. "32":"y",
  189. "33":"y",
  190. "34":"y",
  191. "35":"y",
  192. "36":"y",
  193. "37":"y",
  194. "38":"y",
  195. "39":"y",
  196. "40":"y",
  197. "41":"y",
  198. "42":"y",
  199. "43":"y",
  200. "44":"y",
  201. "45":"y",
  202. "46":"y",
  203. "47":"y",
  204. "48":"y",
  205. "49":"y",
  206. "50":"y",
  207. "51":"y",
  208. "52":"y",
  209. "53":"y",
  210. "54":"y",
  211. "55":"y",
  212. "56":"y",
  213. "57":"y",
  214. "58":"y",
  215. "59":"y",
  216. "60":"y",
  217. "61":"y",
  218. "62":"y",
  219. "63":"y",
  220. "64":"y",
  221. "65":"y",
  222. "66":"y",
  223. "67":"y",
  224. "68":"y",
  225. "69":"y",
  226. "70":"y",
  227. "71":"y",
  228. "72":"y",
  229. "73":"y",
  230. "74":"y",
  231. "75":"y",
  232. "76":"y",
  233. "77":"y",
  234. "78":"y",
  235. "79":"y",
  236. "80":"y",
  237. "81":"y",
  238. "83":"y",
  239. "84":"y",
  240. "85":"y",
  241. "86":"y",
  242. "87":"y",
  243. "88":"y",
  244. "89":"y"
  245. },
  246. "safari":{
  247. "3.1":"n",
  248. "3.2":"y",
  249. "4":"y",
  250. "5":"y",
  251. "5.1":"y",
  252. "6":"y",
  253. "6.1":"y",
  254. "7":"y",
  255. "7.1":"y",
  256. "8":"y",
  257. "9":"y",
  258. "9.1":"y",
  259. "10":"y",
  260. "10.1":"y",
  261. "11":"y",
  262. "11.1":"y",
  263. "12":"y",
  264. "12.1":"y",
  265. "13":"y",
  266. "13.1":"y",
  267. "14":"y",
  268. "TP":"y"
  269. },
  270. "opera":{
  271. "9":"n",
  272. "9.5-9.6":"y",
  273. "10.0-10.1":"y",
  274. "10.5":"y",
  275. "10.6":"y",
  276. "11":"y",
  277. "11.1":"y",
  278. "11.5":"y",
  279. "11.6":"y",
  280. "12":"y",
  281. "12.1":"y",
  282. "15":"y",
  283. "16":"y",
  284. "17":"y",
  285. "18":"y",
  286. "19":"y",
  287. "20":"y",
  288. "21":"y",
  289. "22":"y",
  290. "23":"y",
  291. "24":"y",
  292. "25":"y",
  293. "26":"y",
  294. "27":"y",
  295. "28":"y",
  296. "29":"y",
  297. "30":"y",
  298. "31":"y",
  299. "32":"y",
  300. "33":"y",
  301. "34":"y",
  302. "35":"y",
  303. "36":"y",
  304. "37":"y",
  305. "38":"y",
  306. "39":"y",
  307. "40":"y",
  308. "41":"y",
  309. "42":"y",
  310. "43":"y",
  311. "44":"y",
  312. "45":"y",
  313. "46":"y",
  314. "47":"y",
  315. "48":"y",
  316. "49":"y",
  317. "50":"y",
  318. "51":"y",
  319. "52":"y",
  320. "53":"y",
  321. "54":"y",
  322. "55":"y",
  323. "56":"y",
  324. "57":"y",
  325. "58":"y",
  326. "60":"y",
  327. "62":"y",
  328. "63":"y",
  329. "64":"y",
  330. "65":"y",
  331. "66":"y",
  332. "67":"y",
  333. "68":"y",
  334. "69":"y",
  335. "70":"y",
  336. "71":"y"
  337. },
  338. "ios_saf":{
  339. "3.2":"y",
  340. "4.0-4.1":"y",
  341. "4.2-4.3":"y",
  342. "5.0-5.1":"y",
  343. "6.0-6.1":"y",
  344. "7.0-7.1":"y",
  345. "8":"y",
  346. "8.1-8.4":"y",
  347. "9.0-9.2":"y",
  348. "9.3":"y",
  349. "10.0-10.2":"y",
  350. "10.3":"y",
  351. "11.0-11.2":"y",
  352. "11.3-11.4":"y",
  353. "12.0-12.1":"y",
  354. "12.2-12.4":"y",
  355. "13.0-13.1":"y",
  356. "13.2":"y",
  357. "13.3":"y",
  358. "13.4-13.7":"y",
  359. "14":"y"
  360. },
  361. "op_mini":{
  362. "all":"y"
  363. },
  364. "android":{
  365. "2.1":"y",
  366. "2.2":"y",
  367. "2.3":"y",
  368. "3":"y",
  369. "4":"y",
  370. "4.1":"y",
  371. "4.2-4.3":"y",
  372. "4.4":"y",
  373. "4.4.3-4.4.4":"y",
  374. "81":"y"
  375. },
  376. "bb":{
  377. "7":"y",
  378. "10":"y"
  379. },
  380. "op_mob":{
  381. "10":"y",
  382. "11":"y",
  383. "11.1":"y",
  384. "11.5":"y",
  385. "12":"y",
  386. "12.1":"y",
  387. "59":"y"
  388. },
  389. "and_chr":{
  390. "85":"y"
  391. },
  392. "and_ff":{
  393. "79":"y"
  394. },
  395. "ie_mob":{
  396. "10":"y",
  397. "11":"y"
  398. },
  399. "and_uc":{
  400. "12.12":"y"
  401. },
  402. "samsung":{
  403. "4":"y",
  404. "5.0-5.4":"y",
  405. "6.2-6.4":"y",
  406. "7.2-7.4":"y",
  407. "8.2":"y",
  408. "9.2":"y",
  409. "10.1":"y",
  410. "11.1-11.2":"y",
  411. "12.0":"y"
  412. },
  413. "and_qq":{
  414. "10.4":"y"
  415. },
  416. "baidu":{
  417. "7.12":"y"
  418. },
  419. "kaios":{
  420. "2.5":"y"
  421. }
  422. },
  423. "notes":"",
  424. "notes_by_num":{
  425. "1":"IE7 and IE8 support only these CSS3 selectors: General siblings (`element1~element2`) and Attribute selectors `[attr^=val]`, `[attr$=val]`, and `[attr*=val]`"
  426. },
  427. "usage_perc_y":99.46,
  428. "usage_perc_a":0.08,
  429. "ucprefix":false,
  430. "parent":"",
  431. "keywords":"",
  432. "ie_id":"",
  433. "chrome_id":"",
  434. "firefox_id":"",
  435. "webkit_id":"",
  436. "shown":true
  437. }