使用CSS在flexbox中创建边栏

时间:2018-02-16 08:19:34

标签: html css css3 flexbox

在我的页面上我想要一个标题,在下面我希望在左侧有一个侧边栏,在右侧有一个内容页面。

侧边栏的宽度应为X(可能为100 px),内容页面应包含完整窗口的其余部分。

Page

我开始创建这个,但我的侧边栏和内容页面没有完整的高度。即使将高度设置为100%,也不要填充页面的其余部分。

为什么我必须设置侧边栏的最小和最大宽度而不是宽度?设置width: 100px时,宽度返回70px。

html {
  height: 100%;
}

body {
  height: 100%;
  margin: 0;
  font-family: Ubuntu;
  background: linear-gradient(#b3ffab, #67fffc);
}

#header {
  height: 30px;
  display: flex;
  align-items: center;
  background: linear-gradient(#444444, #333333);
  color: #bbbbbb;
}

#headerContent {
  margin-left: 10px;
}

#page {
  display: flex;
}

#sideBar {
  min-width: 100px;
  max-width: 100px;
  background: red;
}

#content {
  width: 100%;
  background: blue;
}
<link rel="stylesheet" type="text/css" href="//fonts.googleapis.com/css?family=Ubuntu" />

<div id="header">
  <div id="headerContent">
    Desktop
  </div>
</div>

<div id="page">
  <div id="sideBar">
    <div>
      box 1
    </div>
    <div>
      box 2
    </div>
  </div>
  <div id="content">
    content
  </div>
</div>

1 个答案:

答案 0 :(得分:1)

您可以灵活地设置高度和宽度。

  • 高度设置为视口高度的100%减去标题的高度。
  • 侧边栏的宽度设置为100px。现在允许内容增长以填充屏幕的其余部分。

希望这有帮助。

&#13;
&#13;
html {
  height: 100%;
}

body {
  height: 100%;
  margin: 0;
  font-family: Ubuntu;
  background: linear-gradient(#b3ffab, #67fffc);
}

#header {
  height: 30px;
  display: flex;
  align-items: center;
  background: linear-gradient(#444444, #333333);
  color: #bbbbbb;
}

#headerContent {
  margin-left: 10px;
}

#page {
  display: flex;
  height: calc( 100vh - 30px);
  /* calculate the height. Header is 30px */
}

#sideBar {
  width: 100px;
  background: red;
}

#content {
  background: blue;
  flex: 1 0 auto;
  /* enable grow, disable shrink */
}
&#13;
<link rel="stylesheet" type="text/css" href="//fonts.googleapis.com/css?family=Ubuntu" />

<div id="header">
  <div id="headerContent">
    Desktop
  </div>
</div>

<div id="page">
  <div id="sideBar">
    <div>
      box 1
    </div>
    <div>
      box 2
    </div>
  </div>
  <div id="content">
    content
  </div>
</div>
&#13;
&#13;
&#13;