Flex layout:修订间差异

来自WHY42
Riguz留言 | 贡献
标签2017版源代码编辑
Riguz留言 | 贡献
标签2017版源代码编辑
 
(未显示同一用户的1个中间版本)
第16行: 第16行:
.container {
.container {
   flex-direction: row | row-reverse | column | column-reverse;
   flex-direction: row | row-reverse | column | column-reverse;
}
</syntaxhighlight>
== Align self==
[[File:align-self.svg|200px|thumb|align-self]]
Issue: Flexbox "align-items : center" shrinks a child's max-width<ref>https://stackoverflow.com/questions/35836415/flexbox-align-items-center-shrinks-a-childs-max-width</ref>
<syntaxhighlight lang="css">
.container {
  align-self: center;
  max-width: 200px;
  width: 100%;
}
}
</syntaxhighlight>
</syntaxhighlight>

2024年12月8日 (日) 15:19的最新版本

Basics

If “regular” layout is based on both block and inline flow directions, the flex layout is based on “flex-flow directions”.



Flex properties

Direction

This establishes the main-axis, thus defining the direction flex items are placed in the flex container. Flexbox is (aside from optional wrapping) a single-direction layout concept.

flex-direction
.container {
  flex-direction: row | row-reverse | column | column-reverse;
}

Align self

align-self

Issue: Flexbox "align-items : center" shrinks a child's max-width[1]

.container {
  align-self: center;
  max-width: 200px;
  width: 100%;
}