小编Bra*_*nek的帖子

如何使盒子在flexbox中并排排列而不是彼此重叠?

想知道为什么itemContainer并且priceContainer不会出现在彼此旁边?

我是否需要为FlexBox包含任何类型的文件?

我认为它是内置于CSS3中的.是否有标准附加组件可供使用?

.container {
  display: flex;
  display: -webkit-flex;
  width: 100%;
  height: 100%;
  flex-direction: row;
}
#orderContainer {
  width: 15%;
  border: 1px solid #f2f2f2;
  height: 100%;
  flex-direction: row;
}
#selectionsContainer {
  width: 85%;
}
#catagoryContainer {
  width: 100%;
  height: calc(20% - 2px);
  border: 1px solid #f2f2f2;
}
#menuContainer {
  width: 100%;
  height: 80%;
  border-top: 0px;
  border: 1px solid #f2f2f2;
}
#itemContainer {
  width: 70%;
  height: 80%;
  border: 1px solid #f2f2f2;
  display: flex;
  order: 1;
}
#priceContainer …
Run Code Online (Sandbox Code Playgroud)

html css html5 css3 flexbox

6
推荐指数
1
解决办法
4165
查看次数

标签 统计

css ×1

css3 ×1

flexbox ×1

html ×1

html5 ×1