Do I not understand the flex-grow property?
问题 I'm afraid I must not understand flex-grow. If you jump to the JSFiddle below - the way I understand it, .big should be three times the size of the other .flex-item . As you can see, not so. Why? http://jsfiddle.net/nrur6mmo/ .flex-container { display:flex; padding:0 20%; } .flex-item { flex-grow:1; list-style-type:none; border:1px solid black; } .big { flex-grow:3; } <ul class="flex-container"> <li class="flex-item big">Why isn't this exactly three times the size of the other one?</li> <li