flexboxgrid - Holy Grail Layout example works incorrectly in IE 11 -


i trying use following flexbox layout(holy grail layout), works incorrectly in ie 11.(this works correctly in ms edge though.)

https://codepen.io/cchambers/pen/kdbpa

  body {    font: 24px helvetica;    background: #999999;    color:rgba(0,0,0,.25);   }    #main {​-    min-height: 800px;    margin: 0px;    padding: 0px;    display: -webkit-flex;    display:         flex;    -webkit-flex-flow: row;            flex-flow: row;    }    #main > article {    margin: 4px;    padding: 5px;    border: 1px solid #cccc33;    border-radius: 7pt;    background: #dddd88;    -webkit-flex: 3 1 60%;            flex: 3 1 60%;    -webkit-order: 2;            order: 2;    }    #main > nav {    margin: 4px;    padding: 5px;    border: 1px solid #8888bb;    border-radius: 7pt;    background: #ccccff;    -webkit-flex: 1 6 20%;            flex: 1 6 20%;    -webkit-order: 1;            order: 1;    } 

i googled , played around it, wasn't successful far. can me on this?

thanks,


Comments

Popular posts from this blog

ubuntu - PHP script to find files of certain extensions in a directory, returns populated array when run in browser, but empty array when run from terminal -

php - How can i create a user dashboard -

javascript - How to detect toggling of the fullscreen-toolbar in jQuery Mobile? -