为什么即使高度为100%,高度为100vh,也无法获得完整的页面?

时间:2018-10-18 19:46:09

标签: html css

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

我已经包含了代码片段,我添加了几个参数'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>

1 个答案:

答案 0 :(得分:2)

正如您所说,您正在尝试使松弛像应用程序一样,因此我认为底部的顶部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>