I'm trying to do flex grid but I want to make like any column have same height.
It work perfect for IE and Firefox, but in Chrome and Opera not.
/p>
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
min-height testhtml, body { padding: 0px; margin: 0px; height: 100%; text-align: center; }
#test{ display: flex; border: 1px solid blue; list-style: none; padding: 0; margin: 0; }
#test li{display: inline-block; height: auto; border: 1px solid orange; font-size: 30px; padding: 50px;}
.blue{ background: blue; height: 100%; }
.red{background: red; height: 100%;}
.green{background: green; height: 100%;}
-
test
test -
test
test -
test
test
It is possible to do without JS?
Anyone Can tell my where is my problem