Skip to content

Instantly share code, notes, and snippets.

@davidhund
Last active October 17, 2019 16:02
Show Gist options
  • Star 16 You must be signed in to star a gist
  • Fork 3 You must be signed in to fork a gist
  • Save davidhund/b995353fdf9ce387b8a2 to your computer and use it in GitHub Desktop.
Save davidhund/b995353fdf9ce387b8a2 to your computer and use it in GitHub Desktop.
The simplest feature-detect for flexbox?
/*
* Trying to feature-detect (very naive)
* CSS Flexbox support.
* - Only most modern syntax
*
* Is this nonsense?
*/
(function NaiveFlexBoxSupport(d){
var f = "flex", e = d.createElement('b');
e.style.display = f;
return e.style.display == f;
})(document);
@davidhund
Copy link
Author

I have wrapped it in a try/catch and added a -webkit- prefix check, now Safari 7.1 returns true. Need tidying up, obvs.

(function(d){
  var c = " ", f = "flex", fw = "-webkit-"+f, e = d.createElement('b');
  try { 
    e.style.display = fw; 
    e.style.display = f; 
    c += (e.style.display == f || e.style.display == fw) ? f : "no-"+f; 
  } catch(e) { 
    c += "no-"+f; 
  }
  d.documentElement.className += c; 
})(document);

Copy link

ghost commented Aug 10, 2016

This is a cool concept but where is the return in the updated code?

@lstrrs
Copy link

lstrrs commented Aug 16, 2016

There is no return statement because @davidhund is adding a class of 'flex' or 'no-flex' to the html tag.

@tfcwebdev
Copy link

tfcwebdev commented Aug 17, 2016

Very interesting. Just want to point out that, for the most part, if it's Flexbox-compatible, there really isn't anything I need to do in CSS.

However, if its Flexbox-incompatible, I need to add additional CSS. In that case, I would want to add a class to HTML to tell me its incompatible so I can take advantage of the cascading nature of CSS.

opps - I see it's supposed to add "no-flex." It does not do that in IE emulation in MS Edge.

When emulating IE9 and IE10 it adds "flex" contrary to the compatibility chart above.

@Webnewbies
Copy link

Webnewbies commented Aug 22, 2016

Thank's for you help. I wrote this code for you:

(function(d) {
        'use strict';
        var c = " ", prefixFlex = 'flex -webkit-flex -ms-flexbox -moz-box -webkit-box'.split(' '), elem = d.createElement('b'), mStyle = elem.style;
        try {
            for (var i = 0, len = prefixFlex.length; i < len; i++) {
                c += ( (mStyle.display = prefixFlex[i]) && mStyle.display != prefixFlex[i] ) ? 'no-flex' :  'flex', (i = len);
            }
        } catch(e) { 
            c += "no-flex";
        }
        d.documentElement.className =  c + 'box';
    })(document);

@brentonstrine
Copy link

Just curious in what circumstances this will cause an error. I'm assuming it can cause an error since you added the try/catch block.

@kingsloi
Copy link

@ergcode
Copy link

ergcode commented Aug 25, 2017

David, how about this solution?
https://github.com/ergcode/ergonomic.detect_flex

@jblok
Copy link

jblok commented Sep 12, 2017

Wrote a version of Davids script that returns a boolean

export const testFlexbox = () => {
  const f = 'flex';
  const fw = `-webkit-${f}`;
  const el = document.createElement('b');

  try {
    el.style.display = fw;
    el.style.display = f;
    return !!(el.style.display === f || el.style.display === fw);
  } catch (err) {
    return false;
  }
};

@mcshaman
Copy link

Or you could make it css property generic

function cssPropertySupported(pNames) {
	const element = document.createElement('a')

	let index = pNames.length

	try {
		while (index--) {
			const name = pNames[index]

			element.style.display = name
			if (element.style.display === name) {
				return true
			}
		}
	} catch (pError) {}

	return false
}

cssPropertySupported(['-webkit-box', '-ms-flex', 'flex'])

@patrick-fischer-hirschstein

according to mcshaman post:

cssPropertySupported(['-webkit-box', '-ms-flex', 'flex'])

should be:
cssPropertySupported(['-ms-flexbox', '-webkit-box', 'flex'])

By the way:

return true

should be:
return name

so you know what syntax is used

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment