flexbox.json 8.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336
  1. {
  2. "title":"Flexible Box Layout Module",
  3. "description":"Method of positioning elements in horizontal or vertical stacks. Support includes the support for the all properties prefixed with `flex` as well as `display: flex`, `display: inline-flex`, `align-content`, `align-items`, `align-self`, `justify-content` and `order`.",
  4. "spec":"http://www.w3.org/TR/css3-flexbox/",
  5. "status":"cr",
  6. "links":[
  7. {
  8. "url":"http://bennettfeely.com/flexplorer/",
  9. "title":"Flexbox CSS generator"
  10. },
  11. {
  12. "url":"http://www.adobe.com/devnet/html5/articles/working-with-flexbox-the-new-spec.html",
  13. "title":"Article on using the latest spec"
  14. },
  15. {
  16. "url":"https://dev.opera.com/articles/view/advanced-cross-browser-flexbox/",
  17. "title":"Tutorial on cross-browser support"
  18. },
  19. {
  20. "url":"http://philipwalton.github.io/solved-by-flexbox/",
  21. "title":"Examples on how to solve common layout problems with flexbox"
  22. },
  23. {
  24. "url":"http://css-tricks.com/snippets/css/a-guide-to-flexbox/",
  25. "title":"A Complete Guide to Flexbox"
  26. },
  27. {
  28. "url":"http://the-echoplex.net/flexyboxes/",
  29. "title":"Flexbox playground and code generator"
  30. },
  31. {
  32. "url":"https://github.com/philipwalton/flexbugs",
  33. "title":"Flexbugs: Repo for flexbox bugs"
  34. },
  35. {
  36. "url":"https://github.com/10up/flexibility/",
  37. "title":"10up Open Sources IE 8 and 9 Support for Flexbox"
  38. },
  39. {
  40. "url":"https://github.com/vadimyer/ecligrid",
  41. "title":"Ecligrid - Mobile first flexbox grid system"
  42. }
  43. ],
  44. "bugs":[
  45. {
  46. "description":"[Flexbugs](https://github.com/philipwalton/flexbugs): community-curated list of flexbox issues and cross-browser workarounds for them"
  47. },
  48. {
  49. "description":"In IE10 the default value for `flex` is `0 0 auto` rather than `0 1 auto` as defined in the latest spec."
  50. },
  51. {
  52. "description":"In Safari, the height of (non flex) children are not recognized in percentages. However other browsers recognize and scale the children based on percentage heights. ([See bug](https://bugs.webkit.org/show_bug.cgi?id=137730)) The bug also appeared in Chrome but was fixed in [Chrome 51](http://crbug.com/341310)"
  53. },
  54. {
  55. "description":"Firefox 51 and below does not support [Flexbox in button elements](https://bugzilla.mozilla.org/show_bug.cgi?id=984869#c2). Fixed in version 52."
  56. },
  57. {
  58. "description":"IE 11 does not vertically align items correctly when `min-height` is used [see bug](https://connect.microsoft.com/IE/feedback/details/816293/ie11-flexbox-with-min-height-not-vertically-aligning-with-align-items-center)"
  59. },
  60. {
  61. "description":"In IE10 and IE11, containers with `display: flex` and `flex-direction: column` will not properly calculate their flexed childrens' sizes if the container has `min-height` but no explicit `height` property. [See bug](https://connect.microsoft.com/IE/feedback/details/802625/min-height-and-flexbox-flex-direction-column-dont-work-together-in-ie-10-11-preview)."
  62. },
  63. {
  64. "description":"IE 11 requires a unit to be added to the third argument, the flex-basis property [see MSFT documentation](https://msdn.microsoft.com/en-us/library/dn254946%28v=vs.85%29.aspx)"
  65. },
  66. {
  67. "description":"Safari 10 and below uses min/max width/height declarations for actually rendering the size of flex items, but it ignores those values when calculating how many items should be on a single line of a multi-line flex container. Instead, it simply uses the item's flex-basis value, or its width if the flex basis is set to auto. [see bug](https://bugs.webkit.org/show_bug.cgi?id=136041). Fixed in all versions > 10."
  68. }
  69. ],
  70. "categories":[
  71. "CSS3"
  72. ],
  73. "stats":{
  74. "ie":{
  75. "5.5":"n",
  76. "6":"n",
  77. "7":"n",
  78. "8":"n",
  79. "9":"n",
  80. "10":"a x #2 #4",
  81. "11":"a #4"
  82. },
  83. "edge":{
  84. "12":"y",
  85. "13":"y",
  86. "14":"y",
  87. "15":"y"
  88. },
  89. "firefox":{
  90. "2":"a x #1",
  91. "3":"a x #1",
  92. "3.5":"a x #1",
  93. "3.6":"a x #1",
  94. "4":"a x #1",
  95. "5":"a x #1",
  96. "6":"a x #1",
  97. "7":"a x #1",
  98. "8":"a x #1",
  99. "9":"a x #1",
  100. "10":"a x #1",
  101. "11":"a x #1",
  102. "12":"a x #1",
  103. "13":"a x #1",
  104. "14":"a x #1",
  105. "15":"a x #1",
  106. "16":"a x #1",
  107. "17":"a x #1",
  108. "18":"a x #1",
  109. "19":"a x #1",
  110. "20":"a x #1",
  111. "21":"a x #1",
  112. "22":"a #3",
  113. "23":"a #3",
  114. "24":"a #3",
  115. "25":"a #3",
  116. "26":"a #3",
  117. "27":"a #3",
  118. "28":"y",
  119. "29":"y",
  120. "30":"y",
  121. "31":"y",
  122. "32":"y",
  123. "33":"y",
  124. "34":"y",
  125. "35":"y",
  126. "36":"y",
  127. "37":"y",
  128. "38":"y",
  129. "39":"y",
  130. "40":"y",
  131. "41":"y",
  132. "42":"y",
  133. "43":"y",
  134. "44":"y",
  135. "45":"y",
  136. "46":"y",
  137. "47":"y",
  138. "48":"y",
  139. "49":"y",
  140. "50":"y",
  141. "51":"y",
  142. "52":"y",
  143. "53":"y"
  144. },
  145. "chrome":{
  146. "4":"a x #1",
  147. "5":"a x #1",
  148. "6":"a x #1",
  149. "7":"a x #1",
  150. "8":"a x #1",
  151. "9":"a x #1",
  152. "10":"a x #1",
  153. "11":"a x #1",
  154. "12":"a x #1",
  155. "13":"a x #1",
  156. "14":"a x #1",
  157. "15":"a x #1",
  158. "16":"a x #1",
  159. "17":"a x #1",
  160. "18":"a x #1",
  161. "19":"a x #1",
  162. "20":"a x #1",
  163. "21":"y x",
  164. "22":"y x",
  165. "23":"y x",
  166. "24":"y x",
  167. "25":"y x",
  168. "26":"y x",
  169. "27":"y x",
  170. "28":"y x",
  171. "29":"y",
  172. "30":"y",
  173. "31":"y",
  174. "32":"y",
  175. "33":"y",
  176. "34":"y",
  177. "35":"y",
  178. "36":"y",
  179. "37":"y",
  180. "38":"y",
  181. "39":"y",
  182. "40":"y",
  183. "41":"y",
  184. "42":"y",
  185. "43":"y",
  186. "44":"y",
  187. "45":"y",
  188. "46":"y",
  189. "47":"y",
  190. "48":"y",
  191. "49":"y",
  192. "50":"y",
  193. "51":"y",
  194. "52":"y",
  195. "53":"y",
  196. "54":"y",
  197. "55":"y",
  198. "56":"y",
  199. "57":"y",
  200. "58":"y"
  201. },
  202. "safari":{
  203. "3.1":"a x #1",
  204. "3.2":"a x #1",
  205. "4":"a x #1",
  206. "5":"a x #1",
  207. "5.1":"a x #1",
  208. "6":"a x #1",
  209. "6.1":"y x",
  210. "7":"y x",
  211. "7.1":"y x",
  212. "8":"y x",
  213. "9":"y",
  214. "9.1":"y",
  215. "10":"y",
  216. "TP":"y"
  217. },
  218. "opera":{
  219. "9":"n",
  220. "9.5-9.6":"n",
  221. "10.0-10.1":"n",
  222. "10.5":"n",
  223. "10.6":"n",
  224. "11":"n",
  225. "11.1":"n",
  226. "11.5":"n",
  227. "11.6":"n",
  228. "12":"n",
  229. "12.1":"y",
  230. "15":"y x",
  231. "16":"y x",
  232. "17":"y",
  233. "18":"y",
  234. "19":"y",
  235. "20":"y",
  236. "21":"y",
  237. "22":"y",
  238. "23":"y",
  239. "24":"y",
  240. "25":"y",
  241. "26":"y",
  242. "27":"y",
  243. "28":"y",
  244. "29":"y",
  245. "30":"y",
  246. "31":"y",
  247. "32":"y",
  248. "33":"y",
  249. "34":"y",
  250. "35":"y",
  251. "36":"y",
  252. "37":"y",
  253. "38":"y",
  254. "39":"y",
  255. "40":"y",
  256. "41":"y",
  257. "42":"y",
  258. "43":"y",
  259. "44":"y"
  260. },
  261. "ios_saf":{
  262. "3.2":"a x #1",
  263. "4.0-4.1":"a x #1",
  264. "4.2-4.3":"a x #1",
  265. "5.0-5.1":"a x #1",
  266. "6.0-6.1":"a x #1",
  267. "7.0-7.1":"y x",
  268. "8":"y x",
  269. "8.1-8.4":"y x",
  270. "9.0-9.2":"y",
  271. "9.3":"y",
  272. "10.0-10.2":"y"
  273. },
  274. "op_mini":{
  275. "all":"y"
  276. },
  277. "android":{
  278. "2.1":"a x #1",
  279. "2.2":"a x #1",
  280. "2.3":"a x #1",
  281. "3":"a x #1",
  282. "4":"a x #1",
  283. "4.1":"a x #1",
  284. "4.2-4.3":"a x #1",
  285. "4.4":"y",
  286. "4.4.3-4.4.4":"y",
  287. "53":"y"
  288. },
  289. "bb":{
  290. "7":"a x #1",
  291. "10":"y"
  292. },
  293. "op_mob":{
  294. "10":"n",
  295. "11":"n",
  296. "11.1":"n",
  297. "11.5":"n",
  298. "12":"n",
  299. "12.1":"y",
  300. "37":"y"
  301. },
  302. "and_chr":{
  303. "55":"y"
  304. },
  305. "and_ff":{
  306. "50":"y"
  307. },
  308. "ie_mob":{
  309. "10":"a x #2",
  310. "11":"y"
  311. },
  312. "and_uc":{
  313. "11":"a x #1"
  314. },
  315. "samsung":{
  316. "4":"y"
  317. }
  318. },
  319. "notes":"Most partial support refers to supporting an [older version](http://www.w3.org/TR/2009/WD-css3-flexbox-20090723/) of the specification or an [older syntax](http://www.w3.org/TR/2012/WD-css3-flexbox-20120322/).",
  320. "notes_by_num":{
  321. "1":"Only supports the [old flexbox](http://www.w3.org/TR/2009/WD-css3-flexbox-20090723) specification and does not support wrapping.",
  322. "2":"Only supports the [2012 syntax](http://www.w3.org/TR/2012/WD-css3-flexbox-20120322/)",
  323. "3":"Does not support flex-wrap or flex-flow properties",
  324. "4":"Partial support is due to large amount of bugs present (see known issues)"
  325. },
  326. "usage_perc_y":82.83,
  327. "usage_perc_a":14.55,
  328. "ucprefix":false,
  329. "parent":"",
  330. "keywords":"flex-box,flex-direction,flex-wrap,flex-flow,flex-grow,flex-basis,display:flex,flex box",
  331. "ie_id":"flexbox",
  332. "chrome_id":"4837301406400512",
  333. "firefox_id":"",
  334. "webkit_id":"",
  335. "shown":true
  336. }