文本放大 flexbox 容器
text enlarges the flexbox container
文字不放大flex容器不知道怎么办
如果我在 @media
为 @media screen and (min-width:600px)
时用文本填充一个框,则此框大于 50%。我想保持与空箱时相同的百分比。
这是代码笔:http://codepen.io/elcollage_com/pen/LpoGVN?editors=110
谢谢。
例子:
html, body{
height: 100%;
padding: 0;
margin: 0;
}
.container {
display:flex;
flex-wrap:wrap;
flex-direction:row;
justify-content:flex-start;
align-items:stretch;
height: 100%;
}
.left {order:2; background:red; flex-basis:100%;}
.middle {order:1; background: green; flex-basis:100%;}
.right {order:3; background:yellow; flex-basis:100%;}
@media screen and (min-width:600px) {
.container {
flex-flow: column wrap;
}
.left {
flex: 1 0 50%;
order: 1;
}
.middle {
flex: 1 0 50%;
order: 3;
}
.right {
flex: 1 0 50%;
order: 2;
}
}
@media screen and (min-width:900px) {
.container {
flex-flow: row nowrap;
}
.left {
flex:1 0 37%;
order:1;
}
.middle {
flex:1 0 21%;
order:2;
}
.right {
flex:1 0 37%;
order:3;
}
}
<div class="container">
<div class="left"></div>
<div class="middle"></div>
<div class="right"></div>
</div>
If I fill one box with text when the @media
is @media screen and (min-width:600px)
this box is bigger than 50%. And I want to keep the same percent that when the boxes are empty.
您已 flex: 1 0 50%
应用于媒体查询中的每个弹性项目。但是,flex 容器在媒体查询中被更改为 column-direction。因此,flex
属性中的50%flex-basis
指的是height
而不是width
。并且当你向每个框添加文本时,高度保持在 50%,但宽度增加。
您的代码:
@media screen and (min-width:600px) {
.container {
flex-flow: column wrap; /* flex container changed to column direction */
}
.left {
flex: 1 0 50%; /* 50% refers to height not width */
order: 1;
}
.middle {
flex: 1 0 50%;
order: 3;
}
.right {
flex: 1 0 50%;
order: 2;
}
}
因此,如果您希望每个框的宽度为 50%(有或没有文本),您需要对代码进行一些调整。
修改后的代码:
.container {
display:flex;
flex-wrap:wrap;
flex-direction:row;
justify-content:flex-start;
align-items:stretch;
height: 100%;
width: 100%; /* new */
}
@media screen and (min-width:600px) {
.container {
flex-flow: column wrap;
}
.left {
flex: 1 0 50%;
order: 1;
width: 50%; /* new */
}
.middle {
flex: 1 0 50%;
order: 3;
width: 50%; /* new */
}
.right {
flex: 1 0 50%;
order: 2;
width: 50%; /* new */
}
}
如果文本垂直溢出框,您可以使用 overflow
and box-sizing
.
等属性来管理超出部分
文字不放大flex容器不知道怎么办
如果我在 @media
为 @media screen and (min-width:600px)
时用文本填充一个框,则此框大于 50%。我想保持与空箱时相同的百分比。
这是代码笔:http://codepen.io/elcollage_com/pen/LpoGVN?editors=110
谢谢。
例子:
html, body{
height: 100%;
padding: 0;
margin: 0;
}
.container {
display:flex;
flex-wrap:wrap;
flex-direction:row;
justify-content:flex-start;
align-items:stretch;
height: 100%;
}
.left {order:2; background:red; flex-basis:100%;}
.middle {order:1; background: green; flex-basis:100%;}
.right {order:3; background:yellow; flex-basis:100%;}
@media screen and (min-width:600px) {
.container {
flex-flow: column wrap;
}
.left {
flex: 1 0 50%;
order: 1;
}
.middle {
flex: 1 0 50%;
order: 3;
}
.right {
flex: 1 0 50%;
order: 2;
}
}
@media screen and (min-width:900px) {
.container {
flex-flow: row nowrap;
}
.left {
flex:1 0 37%;
order:1;
}
.middle {
flex:1 0 21%;
order:2;
}
.right {
flex:1 0 37%;
order:3;
}
}
<div class="container">
<div class="left"></div>
<div class="middle"></div>
<div class="right"></div>
</div>
If I fill one box with text when the
@media
is@media screen and (min-width:600px)
this box is bigger than 50%. And I want to keep the same percent that when the boxes are empty.
您已 flex: 1 0 50%
应用于媒体查询中的每个弹性项目。但是,flex 容器在媒体查询中被更改为 column-direction。因此,flex
属性中的50%flex-basis
指的是height
而不是width
。并且当你向每个框添加文本时,高度保持在 50%,但宽度增加。
您的代码:
@media screen and (min-width:600px) {
.container {
flex-flow: column wrap; /* flex container changed to column direction */
}
.left {
flex: 1 0 50%; /* 50% refers to height not width */
order: 1;
}
.middle {
flex: 1 0 50%;
order: 3;
}
.right {
flex: 1 0 50%;
order: 2;
}
}
因此,如果您希望每个框的宽度为 50%(有或没有文本),您需要对代码进行一些调整。
修改后的代码:
.container {
display:flex;
flex-wrap:wrap;
flex-direction:row;
justify-content:flex-start;
align-items:stretch;
height: 100%;
width: 100%; /* new */
}
@media screen and (min-width:600px) {
.container {
flex-flow: column wrap;
}
.left {
flex: 1 0 50%;
order: 1;
width: 50%; /* new */
}
.middle {
flex: 1 0 50%;
order: 3;
width: 50%; /* new */
}
.right {
flex: 1 0 50%;
order: 2;
width: 50%; /* new */
}
}
如果文本垂直溢出框,您可以使用 overflow
and box-sizing
.