У меня есть контейнер с display: flex
и flex-direction: row
.
В этом контейнере есть суб-контейнер также с display: flex
, но с flex-direction: column
.
Проблема в том, что если я добавлю вход в суб-контейнер, min-width
этого ввода будет проигнорирован.
Это код, в котором я пробовал несколько случаев ввода в flexbox:
form {
margin: 100px;
}
div.flex_ctn {
display: flex;
}
input {
flex: 1;
min-width: 40px;
}
div.column {
flex-direction: column;
}
div.row {
flex-direction: row;
}
div.sub_ctn {
flex: 1;
/*min-width:40px;*/
}
<form>
<div class="flex_ctn row">
<input />
</div>
<div class="flex_ctn column">
<input />
</div>
<div class="flex_ctn row">
<div class="flex_ctn column sub_ctn">
<input />
</div>
</div>
<div class="flex_ctn column">
<div class="flex_ctn row sub_ctn">
<input />
</div>
</div>
</form>