- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在尝试滚动消息列表,使其位于撰写栏下方,但是当添加新消息时,它们应该添加到撰写栏的正上方。有关我的意思的快速演示,请参阅此 link 中的图片.
我的问题:
我无法根据内容大小控制内部 div 元素的宽度。
无法正确获得所需的滚动条(如图所示)
.contentContainer {
margin: 0;
padding: 0;
margin-top: 68px;
height: calc(100vh - 68px);
display: block;
overflow-y: auto;
}
.content {
display: flex;
flex-direction: row;
flex-wrap: nowrap;
height: inherit;
}
.messageArea {
flex-grow: 1;
/*min-width: 400px;*/
height: inherit;
position: relative;
}
.scrollingMessagesList {
height: inherit;
overflow-x: hidden;
overflow-y: auto;
transform: translateZ(0);
}
.outer {
margin: 0 auto;
margin-top: 18px;
margin-bottom: 142px;
height: 414px;
position: relative;
background-color: #78909c;
}
.inner {
margin: 0 20px;
height: inherit;
background-color: darkkhaki;
display: flex;
flex-direction: column-reverse;
align-items: flex-end;
}
.inner p {
width: auto;
max-width: 100%;
outline: none;
padding-bottom: 2px;
background-color: greenyellow;
}
.composeBar {
z-index: 1029!important;
border: none;
bottom: 20px;
}
.compose {
height: 52px;
border-radius: 26px;
background-color: white;
box-shadow: 0 1px 5px 0 rgba(0, 0, 0, .16), 0 4px 4px 0 rgba(0, 0, 0, .10), 0 3px 3px 0 rgba(0, 0, 0, .08);
;
}
<link href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css" rel="stylesheet" />
<div class="container-fluid contentContainer" style="background-color: blanchedalmond;">
<div class="content">
<div class="messageArea">
<div class="scrollingMessagesList">
<div class="outer">
<div class="inner">
<p>Text 1</p>
<p>Text 2</p>
<p>Text 3</p>
</div>
</div>
</div>
<div class="composeBar navbar-fixed-bottom">
<div class="compose">
</div>
</div>
</div>
</div>
</div>
最佳答案
在这里,您可以检查我是否更新了您的代码,如果觉得有帮助,请查看。
$(document).ready(function() {
function setHeight() {
windowHeight = $(window).outerHeight();
$('.inner').css('min-height', windowHeight - 68);
};
setHeight();
$(window).resize(function() {
setHeight();
});
});
.contentContainer {
margin: 0;
padding: 0;
display: block;
overflow-y: auto;
margin-top: 68px;
height: calc(100vh - 68px);
}
.content {
display: flex;
flex-direction: row;
flex-wrap: nowrap;
height: inherit;
}
.messageArea {
flex-grow: 1;
/*min-width: 400px;*/
height: inherit;
position: relative;
}
.scrollingMessagesList {
height: inherit;
overflow-x: hidden;
overflow-y: auto;
transform: translateZ(0);
}
.outer {
margin: 0 auto;
position: relative;
background-color: #78909c;
}
.inner {
margin: 0 20px;
height: auto;
background-color: darkkhaki;
display: flex;
flex-direction: column;
justify-content: flex-end;
padding-bottom: 60px;
align-items: flex-end;
}
.inner p {
width: auto;
max-width: 100%;
outline: none;
padding-bottom: 2px;
background-color: greenyellow;
}
.composeBar {
z-index: 1029!important;
border: none;
bottom: 5px !important;
position: fixed;
}
.compose {
height: 52px;
border-radius: 26px;
background-color: white;
box-shadow: 0 1px 5px 0 rgba(0, 0, 0, .16), 0 4px 4px 0 rgba(0, 0, 0, .10), 0 3px 3px 0 rgba(0, 0, 0, .08);
}
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script>
<link href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css" rel="stylesheet" />
<div class="container-fluid contentContainer" style="background-color: blanchedalmond;">
<div class="content">
<div class="messageArea">
<div class="scrollingMessagesList">
<div class="outer">
<div class="inner">
<p>Text 1</p>
<p>Text 2</p>
<p>Text 3</p>
<p>Text 4</p>
<p>Text 5</p>
<p>Text 6</p>
<p>Text 7</p>
<p>Text 7</p>
</div>
</div>
</div>
<div class="composeBar navbar-fixed-bottom">
<div class="compose">
</div>
</div>
</div>
</div>
</div>
关于jquery - 使文本列表保持在页脚上方,但能够将它们滚动到撰写栏下方,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/46068316/
我正在使用 Java 编写一个时钟程序,该程序能够“滴答作响”,但它存在问题。我认为它与 getter 和 setter 或 toString() 方法有关。 计数器类 package clock;
const Index = () => { // Ref Links const frefLinks = { 1: useRef(1), 2: useRef(2), 3: useRef(3
所以我读了here不能 pickle 装饰函数。确实: import multiprocessing as mp def deco(f): def wrapper(*args, **kwarg
我在go1.11.2 linux/amd64 版本。当包godog使用 go get github.com/DATA-DOG/godog/ 安装,godog 可执行文件在 $GOPATH/bin/中创
如何正确压缩字符串,以便 PHP 能够解压缩? 我试过这个: public static byte[] compress(String string) throws IOException {
我们这里的问题是表明 在测试中使用 Kleene 代数。 在 b 的值由 p 保留的情况下,我们有交换条件 bp = pb;两个程序之间的等价性简化为等式 在 b 的值不被 p 保留的情况下,我们有交
我有一个与我的网络相关的非常奇怪的问题,我在具有多个接口(interface)的 VirtualBox 上安装了 RDO Grizzly OpenStack。 虚拟盒子: eth0 - managem
我正在尝试使用 Passport.js授权谷歌OAuth2在 Node.js .我整个星期都在尝试让它工作,但不知道为什么它不工作,所以现在我求助于 stack 寻求一些潜在的帮助。我已经尝试了所有在
我是一名优秀的程序员,十分优秀!