【发布时间】: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>
【问题讨论】:
-
请不要这样建议,@Lu15。代码属于问题,不在外部站点上,SO 代码 sn-p 工具与 jsfiddle 和 codepen 做同样的事情。
-
我的坏@DanielBeck,我建议的原因是我认为 sn-p 工具没有“整页”选项,我今天才发现它,所以没有必要。