【问题标题】:Why I can't get full length page even with height 100% and height 100vh?为什么即使高度为 100% 和高度为 100vh,我也无法获得全长页面?
【发布时间】:2018-10-19 04:11:42
【问题描述】:

我正在构建一个看起来像 Slack 的简单 Web 应用程序,我在使页面采用全宽和全高时遇到问题。问题是它实际上结束了一半,其他时间花费了更长的时间,但左侧导航栏的尺寸不同,左侧导航栏顶部 60% 的背景颜色与底部 40% 不同。

我已经包含了 sn-p,我添加了几个参数“height:100%”和“height:100vh”并将它们添加到 *、html 和 body 但总是以某种方式转向不正确的东西。

* {
  font-size: 16px;
  margin: 0;
  padding: 0;
}
.app {
  display: flex;
  flex-direction: row;
}
.leftNav {
  border-right: 1px solid black;
  width: 17%;
  padding: 0px;
  margin: 0;
  background-color: lightslategray;
  color: white;
}
.leftNav .title {
  font-weight: 500;
  padding-top: 10px;
  padding-left: 10px;
}
.main {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  width: 100%;
}
.main .messagesListContainer {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.main .messagesList {
  padding: 5px;
}
.main .newMessage {
  width: 100%;
}
.messagesList {
  max-height: 450px;
  overflow: auto;
}
.messagesEntry {
  margin: 5px;
  border-bottom: 1px solid black;
}
<div class="app">
        <div class="leftNav">
          <div class="title"> Channels </div>
          <div>
            Channel 1
          </div>
          <div>
            Channel 2
          </div>
        </div>
        <div class="main">
          <div class="bar">
            <Navbar>
              Navbar goes here
            </Navbar>
          </div>
          <div class="messagesListContainer">
            <div class="messagesList">
              What is Lorem Ipsum?
Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.

Why do we use it?
It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters, as opposed to using 'Content here, content here', making it look like readable English. Many desktop publishing packages and web page editors now use Lorem Ipsum as their default model text, and a search for 'lorem ipsum' will uncover many web sites still in their infancy. Various versions have evolved over the years, sometimes by accident, sometimes on purpose (injected humour and the like).

Where does it come from?
Contrary to popular belief, Lorem Ipsum is not simply random text. It has roots in a piece of classical Latin literature from 45 BC, making it over 2000 years old. Richard McClintock, a Latin professor at Hampden-Sydney College in Virginia, looked up one of the more obscure Latin words, consectetur, from a Lorem Ipsum passage, and going through the cites of the word in classical literature, discovered the undoubtable source. Lorem Ipsum comes from sections 1.10.32 and 1.10.33 of "de Finibus Bonorum et Malorum" (The Extremes of Good and Evil) by Cicero, written in 45 BC. This book is a treatise on the theory of ethics, very popular during the Renaissance. The first line of Lorem Ipsum, "Lorem ipsum dolor sit amet..", comes from a line in section 1.10.32.
            </div>

            <form>
              <div>
                <input placeholder='input' />
              </div>
            </form>
          </div>
        </div>
      </div>

【问题讨论】:

  • 我建议您添加在JSFiddleCodepen 上制作的示例以更清楚,
  • 请不要这样建议,@Lu15。代码属于问题,不在外部站点上,SO 代码 sn-p 工具与 jsfiddle 和 codepen 做同样的事情。
  • 我的坏@DanielBeck,我建议的原因是我认为 sn-p 工具没有“整页”选项,我今天才发现它,所以没有必要。

标签: html css


【解决方案1】:

正如您所说,您正在尝试制作类似 slack 的应用程序,因此我认为您的顶部 navbar 和底部 input 将被修复。

这里我加了

  • height: 100vh.app 因为它是您应用程序的包装器,
  • overflow: auto.main .messagesListContainer,这使得内部内容可以滚动。

这应该可以解决您的问题。

* {
  font-size: 16px;
  margin: 0;
  padding: 0;
}

.app {
  display: flex;
  flex-direction: row;
  height:100vh;
}

.leftNav {
  border-right: 1px solid black;
  width: 17%;
  padding: 0px;
  margin: 0;
  background-color: lightslategray;
  color: white;
}

.leftNav .title {
  font-weight: 500;
  padding-top: 10px;
  padding-left: 10px;
}

.main {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  width: 100%;
}

.main .messagesListContainer {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: auto;
}

.main .messagesList {
  padding: 5px;
}

.main .newMessage {
  width: 100%;
}

.messagesList {
  max-height: 450px;
  overflow: auto;
}

.messagesEntry {
  margin: 5px;
  border-bottom: 1px solid black;
}
<div class="app">
  <div class="leftNav">
    <div class="title"> Channels </div>
    <div>
      Channel 1
    </div>
    <div>
      Channel 2
    </div>
  </div>
  <div class="main">
    <div class="bar">
      <Navbar>
        Navbar goes here
      </Navbar>
    </div>
    <div class="messagesListContainer">
      <div class="messagesList">
        What is Lorem Ipsum? Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type
        specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more
        recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum. Why do we use it? It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The
        point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters, as opposed to using 'Content here, content here', making it look like readable English. Many desktop publishing packages and web page editors now use Lorem
        Ipsum as their default model text, and a search for 'lorem ipsum' will uncover many web sites still in their infancy. Various versions have evolved over the years, sometimes by accident, sometimes on purpose (injected humour and the like). Where
        does it come from? Contrary to popular belief, Lorem Ipsum is not simply random text. It has roots in a piece of classical Latin literature from 45 BC, making it over 2000 years old. Richard McClintock, a Latin professor at Hampden-Sydney College
        in Virginia, looked up one of the more obscure Latin words, consectetur, from a Lorem Ipsum passage, and going through the cites of the word in classical literature, discovered the undoubtable source. Lorem Ipsum comes from sections 1.10.32 and
        1.10.33 of "de Finibus Bonorum et Malorum" (The Extremes of Good and Evil) by Cicero, written in 45 BC. This book is a treatise on the theory of ethics, very popular during the Renaissance. The first line of Lorem Ipsum, "Lorem ipsum dolor sit
        amet..", comes from a line in section 1.10.32.
      </div>

      <form>
        <div>
          <input placeholder='input' />
        </div>
      </form>
    </div>
  </div>
</div>

【讨论】:

  • 比我的简单,+1
猜你喜欢
  • 2021-06-29
  • 2021-10-28
  • 1970-01-01
  • 1970-01-01
  • 2012-10-07
  • 2015-02-11
  • 2011-11-19
  • 1970-01-01
  • 2011-12-14
相关资源
最近更新 更多