微信小程序开发之搞懂flex布局1——Flexbox
摘要:Flexbox ——弹性布局 Flexbox is a layout model for displaying items in a single dimension — as a row or as a column. 弹性布局是一种基于一维的行和列的布局模型。 The key feature o
阅读全文
微信小程序开发之搞懂flex布局2——flex container
摘要:容器的概念,是用来包含其它容器(container)和项目(item)。 flex container——flex容器 A flexbox layout is defined using the flex or inline-flex values of the display property o
阅读全文
微信小程序开发之搞懂flex布局3——Flex Item
摘要:Flex Item flex容器的子元素就是这个容器的flex item。 The direct children of a Flex Container (elements with display: flex or display: inline-flex set on them) become
阅读全文