作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
这是图像(我必须做的)
如何为弹出框添加页脚并使内容可滚动?使用 Twitter Bootstrap 3
最佳答案
要创建带有页脚的弹出框,您必须更改弹出框 template
并添加一些 CSS 来设置该页脚的样式。在这里,我还在页脚中放置了一个按钮,正如您在绘图中包含的那样,但您必须弄清楚自己想用它做什么。
<div class="popover">
<div class="arrow"></div>
<h3 class="popover-title"></h3>
<div class="popover-content"></div>
<div class="popover-footer">
<button type="button" class="btn btn-default">Button</button>
</div>
</div>
$("[rel=details]").popover({
trigger : 'click',
placement : 'bottom',
content : 'Lorem ipsum dolor ...',
template: '<div class="popover"><div class="arrow"></div><h3 class="popover-title"></h3><div class="popover-content"></div><div class="popover-footer"><button type="button" class="btn btn-default">Button</button></div></div>'
});
.popover-footer {
margin: 0;
padding: 8px 14px;
font-size: 14px;
font-weight: 400;
line-height: 18px;
background-color: #F7F7F7;
border-bottom: 1px solid #EBEBEB;
border-radius: 5px 5px 0 0;
}
.popover-content {
overflow-y : scroll;
height: 200px;
}
关于twitter-bootstrap - 如何为弹出框添加页脚并使内容可滚动?使用 Twitter Bootstrap 3,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/22107391/
我是一名优秀的程序员,十分优秀!