flexbox.json 8.8 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":"In IE10 the default value for `flex` is `0 0 auto` rather than `0 1 auto` as defined in the latest spec."
  47. },
  48. {
  49. "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)"
  50. },
  51. {
  52. "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."
  53. },
  54. {
  55. "description":"[Flexbugs](https://github.com/philipwalton/flexbugs): community-curated list of flexbox issues and cross-browser workarounds for them"
  56. },
  57. {
  58. "description":"In IE 10, setting `-ms-flex-flow: row wrap` will not wrap unless `display: inline-block` is set on child elements."
  59. },
  60. {
  61. "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)"
  62. },
  63. {
  64. "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)."
  65. },
  66. {
  67. "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)"
  68. },
  69. {
  70. "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."
  71. }
  72. ],
  73. "categories":[
  74. "CSS3"
  75. ],
  76. "stats":{
  77. "ie":{
  78. "5.5":"n",
  79. "6":"n",
  80. "7":"n",
  81. "8":"n",
  82. "9":"n",
  83. "10":"a x #2 #4",
  84. "11":"a #4"
  85. },
  86. "edge":{
  87. "12":"y",
  88. "13":"y",
  89. "14":"y"
  90. },
  91. "firefox":{
  92. "2":"a x #1",
  93. "3":"a x #1",
  94. "3.5":"a x #1",
  95. "3.6":"a x #1",
  96. "4":"a x #1",
  97. "5":"a x #1",
  98. "6":"a x #1",
  99. "7":"a x #1",
  100. "8":"a x #1",
  101. "9":"a x #1",
  102. "10":"a x #1",
  103. "11":"a x #1",
  104. "12":"a x #1",
  105. "13":"a x #1",
  106. "14":"a x #1",
  107. "15":"a x #1",
  108. "16":"a x #1",
  109. "17":"a x #1",
  110. "18":"a x #1",
  111. "19":"a x #1",
  112. "20":"a x #1",
  113. "21":"a x #1",
  114. "22":"a #3",
  115. "23":"a #3",
  116. "24":"a #3",
  117. "25":"a #3",
  118. "26":"a #3",
  119. "27":"a #3",
  120. "28":"y",
  121. "29":"y",
  122. "30":"y",
  123. "31":"y",
  124. "32":"y",
  125. "33":"y",
  126. "34":"y",
  127. "35":"y",
  128. "36":"y",
  129. "37":"y",
  130. "38":"y",
  131. "39":"y",
  132. "40":"y",
  133. "41":"y",
  134. "42":"y",
  135. "43":"y",
  136. "44":"y",
  137. "45":"y",
  138. "46":"y",
  139. "47":"y",
  140. "48":"y",
  141. "49":"y",
  142. "50":"y",
  143. "51":"y",
  144. "52":"y",
  145. "53":"y"
  146. },
  147. "chrome":{
  148. "4":"a x #1",
  149. "5":"a x #1",
  150. "6":"a x #1",
  151. "7":"a x #1",
  152. "8":"a x #1",
  153. "9":"a x #1",
  154. "10":"a x #1",
  155. "11":"a x #1",
  156. "12":"a x #1",
  157. "13":"a x #1",
  158. "14":"a x #1",
  159. "15":"a x #1",
  160. "16":"a x #1",
  161. "17":"a x #1",
  162. "18":"a x #1",
  163. "19":"a x #1",
  164. "20":"a x #1",
  165. "21":"y x",
  166. "22":"y x",
  167. "23":"y x",
  168. "24":"y x",
  169. "25":"y x",
  170. "26":"y x",
  171. "27":"y x",
  172. "28":"y x",
  173. "29":"y",
  174. "30":"y",
  175. "31":"y",
  176. "32":"y",
  177. "33":"y",
  178. "34":"y",
  179. "35":"y",
  180. "36":"y",
  181. "37":"y",
  182. "38":"y",
  183. "39":"y",
  184. "40":"y",
  185. "41":"y",
  186. "42":"y",
  187. "43":"y",
  188. "44":"y",
  189. "45":"y",
  190. "46":"y",
  191. "47":"y",
  192. "48":"y",
  193. "49":"y",
  194. "50":"y",
  195. "51":"y",
  196. "52":"y",
  197. "53":"y",
  198. "54":"y",
  199. "55":"y",
  200. "56":"y",
  201. "57":"y"
  202. },
  203. "safari":{
  204. "3.1":"a x #1",
  205. "3.2":"a x #1",
  206. "4":"a x #1",
  207. "5":"a x #1",
  208. "5.1":"a x #1",
  209. "6":"a x #1",
  210. "6.1":"y x",
  211. "7":"y x",
  212. "7.1":"y x",
  213. "8":"y x",
  214. "9":"y",
  215. "9.1":"y",
  216. "10":"y",
  217. "TP":"y"
  218. },
  219. "opera":{
  220. "9":"n",
  221. "9.5-9.6":"n",
  222. "10.0-10.1":"n",
  223. "10.5":"n",
  224. "10.6":"n",
  225. "11":"n",
  226. "11.1":"n",
  227. "11.5":"n",
  228. "11.6":"n",
  229. "12":"n",
  230. "12.1":"y",
  231. "15":"y x",
  232. "16":"y x",
  233. "17":"y",
  234. "18":"y",
  235. "19":"y",
  236. "20":"y",
  237. "21":"y",
  238. "22":"y",
  239. "23":"y",
  240. "24":"y",
  241. "25":"y",
  242. "26":"y",
  243. "27":"y",
  244. "28":"y",
  245. "29":"y",
  246. "30":"y",
  247. "31":"y",
  248. "32":"y",
  249. "33":"y",
  250. "34":"y",
  251. "35":"y",
  252. "36":"y",
  253. "37":"y",
  254. "38":"y",
  255. "39":"y",
  256. "40":"y",
  257. "41":"y",
  258. "42":"y",
  259. "43":"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-10.1":"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. "54":"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.98,
  327. "usage_perc_a":14.34,
  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. }