【发布时间】:2022-01-15 01:54:01
【问题描述】:
我在 flex-box 上进行了一些尝试,但我对此一无所知。到目前为止,我认为 flex-box 项目的 width 属性的值并不重要,只要 flex-basis 是放。我也在this Blog 中找到了这个声明。但是如果我删除 div 元素的 width 属性,结果就会改变。为什么?这里到底发生了什么?
flex-basis: 40px; 和 width: 40px; 的div元素集
flex-basis: 40px; 和 width: 40px; 的div元素不设置
我还创建了一个jsfiddle。
*flex-basis: 40px;* 和 *width: 40px;* div 元素集:
*
{
margin: 0;
padding: 0;
list-style-type: none;
text-decoration: none;
}
section
{
display: inline-block;
}
ol
{
display: flex;
flex-direction: column;
align-items: flex-start;
justify-content: flex-start;
background-color: gray;
}
li
{
flex-basis: auto;
flex-grow: 0;
flex-shrink: 0;
background-color: greenyellow;
}
a
{
display: flex;
flex-direction: row;
align-items: center;
justify-content: flex-start;
}
div /* Icon Placeholder */
{
flex-basis: 40px;
flex-grow: 0;
flex-shrink: 0;
width: 40px;
height: 40px;
background-color: red;
}
p
{
flex-basis: 0;
flex-grow: 1;
flex-shrink: 0;
}
<section>
<ol>
<li><a href="#"><div></div><p>The birch canoe slid on the smooth planks.</p></a></li>
<li><a href="#"><div></div><p>Glue the sheet to the dark blue background.</p></a></li>
<li><a href="#"><div></div><p>It's easy to tell the depth of a well.</p></a></li>
<li><a href="#"><div></div><p>These days a chicken leg is a rare dish.</p></a></li>
<li><a href="#"><div></div><p>Rice is often served in round bowls.</p></a></li>
</ol>
</section>
*flex-basis: 40px;* and *width: 40px;* of div element not set:
*
{
margin: 0;
padding: 0;
list-style-type: none;
text-decoration: none;
}
section
{
display: inline-block;
}
ol
{
display: flex;
flex-direction: column;
align-items: flex-start;
justify-content: flex-start;
background-color: gray;
}
li
{
flex-basis: auto;
flex-grow: 0;
flex-shrink: 0;
background-color: greenyellow;
}
a
{
display: flex;
flex-direction: row;
align-items: center;
justify-content: flex-start;
}
div /* Icon Placeholder */
{
flex-basis: 40px;
flex-grow: 0;
flex-shrink: 0;
height: 40px;
background-color: red;
}
p
{
flex-basis: 0;
flex-grow: 1;
flex-shrink: 0;
}
<section>
<ol>
<li><a href="#"><div></div><p>The birch canoe slid on the smooth planks.</p></a></li>
<li><a href="#"><div></div><p>Glue the sheet to the dark blue background.</p></a></li>
<li><a href="#"><div></div><p>It's easy to tell the depth of a well.</p></a></li>
<li><a href="#"><div></div><p>These days a chicken leg is a rare dish.</p></a></li>
<li><a href="#"><div></div><p>Rice is often served in round bowls.</p></a></li>
</ol>
</section>
【问题讨论】: