'alignContent' defaults to 'flex-start' instead of 'stretch' ;

This commit is contained in:
Pierre Renaux
2015-05-09 11:58:02 +08:00
parent b6de3e600e
commit c7fbf44474
4 changed files with 5 additions and 5 deletions

View File

@@ -148,7 +148,7 @@ var computeLayout = (function() {
if ('alignContent' in node.style) {
return node.style.alignContent;
}
return 'stretch';
return 'flex-start';
}
function getAlignItem(node, child) {