我试图在ID包装器内垂直对齐元素。我给属性display:inline-flex;作为ID包装器的伸缩容器。

但是在表现上没有区别。我期望包装器ID中的所有内容都将内联显示。为什么不是呢?

#包装{ 显示:inline-flex; /*无差异显示:flex;* / } 身体< > < div id = "包装" > <标题>标题头> < / <导航> nav < / nav > 除了除了除了< > < / > 主要主要主要< > < / > < / > <页脚页脚页脚> < / div > < /身体>


当前回答

打开整页以便更好地理解

.item { width : 100px; height : 100px; margin: 20px; border: 1px solid blue; background-color: yellow; text-align: center; line-height: 99px; } .flex-con { flex-wrap: wrap; /* <A> */ display: flex; /* 1. uncomment below 2 lines by commenting above 1 line */ /* <B> */ /* display: inline-flex; */ } .label { padding-bottom: 20px; } .flex-inline-play { padding: 20px; border: 1px dashed green; /* <C> */ width: 1000px; /* <D> */ display: flex; } <figure> <blockquote> <h1>Flex vs inline-flex</h1> <cite>This pen is understand difference between flex and inline-flex. Follow along to understand this basic property of css</cite> <ul> <li>Follow #1 in CSS: <ul> <li>Comment <code>display: flex</code></li> <li>Un-comment <code>display: inline-flex</code></li> </ul> </li> <li> Hope you would have understood till now. This is very similar to situation of `inline-block` vs `block`. Lets go beyond and understand usecase to apply learning. Now lets play with combinations of A, B, C & D by un-commenting only as instructed: <ul> <li>A with D -- does this do same job as <code>display: inline-flex</code>. Umm, you may be right, but not its doesnt do always, keep going !</li> <li>A with C</li> <li>A with C & D -- Something wrong ? Keep going !</li> <li>B with C</li> <li>B with C & D -- Still same ? Did you learn something ? inline-flex is useful if you have space to occupy in parent of 2 flexboxes <code>.flex-con</code>. That's the only usecase</li> </ul> </li> </ul> </blockquote> </figure> <br/> <div class="label">Playground:</div> <div class="flex-inline-play"> <div class="flex-con"> <div class="item">1</div> <div class="item">2</div> <div class="item">3</div> <div class="item">4</div> </div> <div class="flex-con"> <div class="item">X</div> <div class="item">Y</div> <div class="item">Z</div> <div class="item">V</div> <div class="item">W</div> </div> </div>

其他回答

为了清晰起见,使用双值显示语法

实际上,display CSS属性一次设置了两个东西:外部显示类型和内部显示类型。外部显示类型影响元素(充当容器)在其上下文中的显示方式。内部显示类型影响元素(或容器的子元素)的布局方式。

如果你使用双值显示语法,这只在一些浏览器(如Firefox)中被支持,两者之间的区别会更加明显:

Display: block相当于Display: block的流量 Display: inline相当于Display: inline流 Display: flex等价于Display: block flex Display: inline-flex等价于Display: inline flex Display: grid等价于Display: block grid Display: inline-grid等价于Display: inline grid

外部显示类型:块或内联:

外部显示类型为block的元素将占用其可用的整个宽度,如<div>。外部显示类型为inline的元素将只占用它所需要的宽度,如<span>所做的那样。

内部显示类型:流动、弯曲或网格:

内部显示类型流是未指定flex或grid时的默认内部显示类型。这是我们在<p>中使用的布局子元素的方式。Flex和网格是布局子节点的新方法,每个子节点都有自己的位置。

结论:

display: flex和display: inline-flex的区别是外层显示类型,第一个外层显示类型是块,第二个外层显示类型是内联。它们都有内部显示类型的flex。

引用:

mozzilla.org上CSS Display属性的双值语法

您需要更多的信息,以便浏览器知道您想要什么。例如,需要告诉容器的子容器“如何”伸缩。

更新的小提琴

我添加了#wrapper > * {flex: 1;保证金:汽车;并将inline-flex更改为flex,您可以看到元素现在如何在页面上均匀地分开。

打开整页以便更好地理解

.item { width : 100px; height : 100px; margin: 20px; border: 1px solid blue; background-color: yellow; text-align: center; line-height: 99px; } .flex-con { flex-wrap: wrap; /* <A> */ display: flex; /* 1. uncomment below 2 lines by commenting above 1 line */ /* <B> */ /* display: inline-flex; */ } .label { padding-bottom: 20px; } .flex-inline-play { padding: 20px; border: 1px dashed green; /* <C> */ width: 1000px; /* <D> */ display: flex; } <figure> <blockquote> <h1>Flex vs inline-flex</h1> <cite>This pen is understand difference between flex and inline-flex. Follow along to understand this basic property of css</cite> <ul> <li>Follow #1 in CSS: <ul> <li>Comment <code>display: flex</code></li> <li>Un-comment <code>display: inline-flex</code></li> </ul> </li> <li> Hope you would have understood till now. This is very similar to situation of `inline-block` vs `block`. Lets go beyond and understand usecase to apply learning. Now lets play with combinations of A, B, C & D by un-commenting only as instructed: <ul> <li>A with D -- does this do same job as <code>display: inline-flex</code>. Umm, you may be right, but not its doesnt do always, keep going !</li> <li>A with C</li> <li>A with C & D -- Something wrong ? Keep going !</li> <li>B with C</li> <li>B with C & D -- Still same ? Did you learn something ? inline-flex is useful if you have space to occupy in parent of 2 flexboxes <code>.flex-con</code>. That's the only usecase</li> </ul> </li> </ul> </blockquote> </figure> <br/> <div class="label">Playground:</div> <div class="flex-inline-play"> <div class="flex-con"> <div class="item">1</div> <div class="item">2</div> <div class="item">3</div> <div class="item">4</div> </div> <div class="flex-con"> <div class="item">X</div> <div class="item">Y</div> <div class="item">Z</div> <div class="item">V</div> <div class="item">W</div> </div> </div>

“flex”和“inline-flex”的区别

简短的回答:

一个是内联的,另一个基本上像块元素一样响应(但有一些自己的区别)。

再答:

内联flex - flex的内联版本允许元素及其子元素具有flex属性,同时仍然保持在文档/网页的常规流中。基本上,如果宽度足够小,您可以将两个内联flex容器放在同一行中,而不需要任何多余的样式来允许它们存在于同一行中。这与“内联块”非常相似。

Flex——容器及其子容器具有Flex属性,但容器保留该行,因为该行是从文档的正常流中取出的。就文档流而言,它像块元素一样响应。如果没有多余的样式,两个flexbox容器就不能存在于同一行上。

你可能遇到的问题

由于您在示例中列出的元素,尽管我是猜测,但我认为您希望使用flex以均匀的逐行方式显示列出的元素,但仍然可以并排查看这些元素。

您可能遇到问题的原因是flex和inline-flex将默认的“flex-direction”属性设置为“row”。这将显示两个孩子并排在一起。将此属性更改为“column”将允许元素堆叠并保留与其父元素宽度相等的空间(宽度)。

下面是一些演示flex和内联flex如何工作的示例,以及一个快速演示内联和块元素如何工作的示例。

display: inline-flex; flex-direction: row;

小提琴

display: flex; flex-direction: row;

小提琴

display: inline-flex; flex-direction: column;

小提琴

display: flex; flex-direction: column;

小提琴

display: inline;

小提琴

display: block

小提琴

还有一个很好的参考文档: 一个完整的指南Flexbox - css技巧

显示:只对容器的伸缩项或子项应用伸缩布局。因此,容器本身仍然是块级元素,因此占据了屏幕的整个宽度。

这将导致每个伸缩容器移动到屏幕上的新行。

显示:内联伸缩将伸缩布局应用到伸缩项或子项以及容器本身。结果,容器就像子元素一样表现为内联flex元素,因此只占用它的项/子元素所需的宽度,而不是整个屏幕的宽度。

这将导致显示为内联伸缩的两个或多个伸缩容器依次在屏幕上并排对齐,直到获得屏幕的整个宽度。