固定位置元素继承弹性项目的宽度

Fixed position element inheriting width of flex item

我正在构建一个 UI,它需要在视口底部有一个固定的 position/sticky 元素,其宽度受主要内容区域的限制。主要内容区域可以选择在(同级)左侧 and/or 右侧固定宽度的边栏,因此我使用 Flexbox 构建主要内容上 flex-grow: 1 的三列结构。

我从@Marc Audet 在 上接受的答案中了解到,在固定元素上设置 width: inherit 通常是解决此问题的方法,但它似乎只有在指定的情况下才有效其父级的宽度,考虑到我需要主要内容区域来填充页面的剩余宽度,这对我没有帮助。

有没有人有解决这个问题的想法?查看我的 Fiddle 以获得 code/example。如有任何帮助,我们将不胜感激!

CSS

html {
  box-sizing: border-box;
  font: 400 16px/1.45 'Source Code Pro';
}

*,
*:before,
*:after {
  box-sizing: inherit;
  margin: 0;
  padding: 0;
  border: 0;
  outline: none;
  overflow-x: hidden;
}

body {
  background: #121;
  color: #FEF;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  width: 100vw;
  height: 100vh;
}

.container {
  display: flex;
  color: #fff;
  height: -moz-fit-content;
  height: -webkit-fit-content;
  height: fit-content;
  background: blue;
}

.left {
  background: blue;
  min-height: 100vh;
  min-width: 150px;
  flex-shrink: 0;
}

.middle {
  background: green;
  min-height: 100vh;
  overflow: hidden;
  width: calc(100vw - 400px);
  padding-bottom: 60px;
  flex-grow: 1;
  flex-shrink: 0;
}

.middle .fixed-footer {
  background: orange;
  position: fixed;
  bottom: 0;
  width: 100vw;
  width: inherit;
  padding: 16px 0;
  overflow-x: hidden;
}

.right {
  background: blue;
  min-height: 100vh;
  min-width: 250px;
  flex-shrink: 0;
}

@media screen and (min-width: 640px) {
  html {
    margin-left: calc(100vw - 100%);
    margin-right: 0;
    overflow-y: auto;
  }
}

添加了 Star Wars ipsum 内容以演示 .middle 的垂直灵活性以及 .fixed-footer 如何静止并且是 .middle 的宽度。

DEMO