Difference between flex-end and end?
问题 When I use the css property align-items , I cannot see any visual difference with the value of flex-end or value of end . What is the difference between align-items: end and align-items: flex-end ? 回答1: One value ( end ) is defined in the CSS Box Alignment specification, and is intended to apply to multiple box layout models (block, table, grid, flex, etc.) The other value ( flex-end ) is defined in the CSS flexbox specification, and is intended to apply only to flex layout. With the Box