- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在尝试让我页面中的一些内容填满所有剩余的屏幕尺寸。我的页面有一个标题,内容是两个 div,都需要可滚动。我尝试了一些解决方案,我想出的最好的解决方案是使用 Flexbox并使用 CSS calc
设置高度。
但是 flexbox 的高度仍然只是内容的高度。大多数其他答案说将 body
和 html
标签高度设置为 100%。这也不起作用,我检查页面高度没有被继承。所以我怀疑这可能是问题所在,但我不知道答案是什么。
我也在使用 bootstrap 并使用 box-sizing
修复我在 bootstrap 中遇到的一些问题,这也可能是个问题。
我的 flexbox CSS:
html,
body {
height: 100%;
/* setting height: 100vh doesn't work either
height: 100vh;
*/
margin: 0
}
body {
background: none repeat scroll 0 0;
padding-top: 105px;
}
/* my header is 102px high and using calc to set the remaining height */
.flex-box {
display: flex;
height: -moz-calc(100% - 102px);
height: -webkit-calc(100% - 102px);
height: calc(100% - 102px);
}
.left {
flex: 1;
order: 1;
overflow: auto;
background:red;
}
.right {
flex: 1;
order: 2;
overflow:auto;
background:green;
}
/* Fix for bootstrap box issues in slickgrid */
*,
*:before,
*:after {
-webkit-box-sizing: content-box;
-moz-box-sizing: content-box;
box-sizing: content-box;
}
.container .row *,
.container .row *:before,
.container .row *:after {
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
box-sizing: border-box;
}
编辑:添加 HTML:
<div class="flex-box">
<div class="left">
<div ui-tree="treeOptions" id="tree-root">
<ol ui-tree-nodes="" ng-model="root.items">
<li data-ng-repeat="item in root.items"
ui-tree-node
data-ng-include="'angularTree.html'"></li>
</ol>
</div>
</div>
<div class="right">
<slickgridjs id="data-grid"></slickgridjs>
</div>
</div>
编辑:这是一个包含我正在使用的所有 css 的 jsfiddle,以及更完整的 html。
https://jsfiddle.net/w48567c6/
如何让 flexbox 使用整个剩余屏幕高度?
最佳答案
与其乱用 height: calc(100% - something)
,我建议在任何地方都使用 flexbox!
html, body, .main-container, .main-container > div, .flex-box {
display: flex; /* Flexbox everywhere! */
flex: 1; /* Fill available space */
}
html { height: 100% } /* Fill the window */
body { margin: 0 } /* Kill annoying margins */
.left, .right {
flex: 1; /* Fill available space */
overflow: auto; /* In case content is too tall */
}
@import 'https://maxcdn.bootstrapcdn.com/bootstrap/3.2.0/css/bootstrap.min.css';
html, body, .main-container, .main-container > div, .flex-box {
display: flex;
flex: 1;
}
html { height: 100% }
body { margin: 0 }
.header {
background: lime;
height: 50px;
}
.left, .right {
flex: 1;
background: aqua;
overflow: auto;
}
.right {
background: yellow;
}
/* Fix for bootstrap box issues in slickgrid */
*,
*:before,
*:after {
-webkit-box-sizing: content-box;
-moz-box-sizing: content-box;
box-sizing: content-box;
}
.container .row *,
.container .row *:before,
.container .row *:after {
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
box-sizing: border-box;
}
/* adding all the other css I have just in case */
body {
background: none repeat scroll 0 0;
padding-top: 105px;
}
/* nav-pills custom styling */
.nav > li > a {
padding: 5px 15px;
}
.nav > li > .separator {
padding: 5px 15px;
color: #428bca;
display: block;
position: relative;
}
/* Fix for cursor point in angular bootstrap */
.nav, .pagination, .carousel, .panel-title a {
cursor: pointer;
}
.nav {
margin-top: 10px;
}
.no-top-margin {
margin-top: 0px !important;
}
.action-bar {
top: 50px;
z-index: 999;
}
#main-container {
width: 100%;
display: inline-block;
}
input.editor-text {
background: none repeat scroll 0 0 transparent;
border: 0 none;
height: 100%;
margin: 0;
outline: 0 none;
padding: 0;
width: 100%;
}
.hide {
display: none !important;
}
.col-sm-7 {
padding-left: 0px !important;
padding-right: 0px !important;
}
.form-signin {
max-width: 330px;
padding: 15px;
margin: 0 auto;
}
.form-signin #userName {
margin-bottom: -1px;
border-bottom-right-radius: 0;
border-bottom-left-radius: 0;
}
.form-signin #userPassword {
margin-bottom: 10px;
border-top-left-radius: 0;
border-top-right-radius: 0;
}
.form-signin .form-control {
position: relative;
height: auto;
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
box-sizing: border-box;
padding: 10px;
font-size: 16px;
}
div.personal-tools {
margin-top: 10px;
}
/* centering nav-bar pagination */
.nav-center {
display: table;
margin: 0 auto;
}
/* styling for the tree in the modal */
span.order-tree-node {
font-weight:bold;
background-color: Transparent;
background-repeat:no-repeat;
border: none;
outline:none;
cursor:pointer;
}
div.order-tree-content{
display:inline-block;
cursor: pointer;
}
button.custom-checkbox{
background-color: Transparent;
background-repeat:no-repeat;
border: none;
outline:none;
}
.align-right {
float: right;
}
i.checkbox-icon {
background-color: white;
}
li.order-filters {
width: 10%;
float:right;
}
/* overwriting bootstrap in table */
.currency {
text-align: right;
}
.table {
cursor: pointer;
}
<div class="main-container">
<nav class="navbar navbar-default navbar-fixed-top">
<div class="container-fluid">
<div class="btn-group pull-right personal-tools">
<a class="btn dropdown-toggle">First header</a>
</div>
</div>
</nav>
<div>
<nav class="navbar navbar-default navbar-fixed-top action-bar">
<div class="container-fluid">
<ul class="nav nav-pills">
<li><a class="project-button"> Second Header</a></li>
<li><a>Second Header</a></li>
</ul>
</div>
</nav>
<div class="flex-box">
<div class="left">
<ol ui-tree-nodes="" ng-model="root.items">
<li>list item</li>
<li>list item</li>
<li>list item</li>
<li>list item</li>
<li>list item</li>
<li>list item</li>
<li>list item</li>
<li>list item</li>
<li>list item</li>
<li>list item</li>
</ol>
</div>
<div class="right">
Necessitatibus omnis minus, ea, odit saepe recusandae delectus dolore, libero magnam sunt maxime laborum. Est praesentium aperiam officiis assumenda id corporis eos eveniet debitis, eius deserunt facilis, fuga! Sint, similique!
</div>
</div>
</div>
</div>
关于CSS 高度 : 100% not working in html or body,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/30822227/
我想避免创建 std::thread 的开销,因此我要实现一个线程池。我正在为一个设计决策而苦苦挣扎: 工作队列中的工作是否应该能够将工作添加到工作队列中?如果是,如何? 问题出现了,因为我想让我添加
color 属性正常工作,但其他两个属性(font-size 和 text-shadow)不起作用。当链接被访问时,它的字体大小应该减小到 20 px 并且应用 text-shadow 属性,但它没有
我已经安装并配置了 supervisor。 ps -ax 显示 10 个进程,例如:php/home/vagrant/Sites/mysite/artisan queue:work --tries=1
我对 php artisan queue::work 命令感到不安。 我的命令不起作用,但我的作业已插入作业表但从未执行。 我正在为队列使用 mongodb 驱动程序。 我做错了什么,请给我建议。 最
为什么我可以找到很多关于“工作窃取”的信息而没有关于“工作耸肩”作为动态负载平衡策略的信息? 通过“工作耸肩”,我的意思是将多余的工作从繁忙的处理器转移到负载较低的邻居上,而不是让空闲的处理器从忙碌的
首先,我正在为 MySQL 使用 DATE_ADD 函数。当试图在 php 中使用 $sqlA 时,由于某种原因它说语法错误(主要是 WHERE 之后的区域)。为什么? $sqlA = "SELECT
a:hover { color: #237ca8 !important; font-weight: bold; } a:active { color: #cccccc !imp
关闭。这个问题需要更多focused .它目前不接受答案。 想改进这个问题吗? 更新问题,使其只关注一个问题 editing this post . 关闭 7 年前。 Improve this q
我试图让只能使用 Tab 键的用户可以访问我的网站。我遇到的问题是,当我尝试使用 tab 键选择 float 的 div 时,不会触发 :focus in css;我不知道为什么它没有被触发。鼠标悬停
我在尝试将 2 个 div 并排放置时遇到了问题。 display: inline 它会删除我的边框并且不会将两个 div 放在同一行上。 请指教: .gig { outline: 1px s
这是 fiddle :http://jsfiddle.net/j9Gmx/ 我怎样才能得到最小高度:100%;上类? 最佳答案 它正在 工作,但由于 div 的父级(正文)没有高度,100% 基本上是
我正在使用 Flutter WebRTC 来创建 P2P 视频通话。 我遇到了一个与网络相关的问题:我已经完成了应用程序,但它只适用于移动数据。 将网络更改为WiFi时,它不起作用并且连接状态挂起Ch
我是 JavaScript 和 jQuery 的初学者。我的 css 和 JavaScript 代码位于 html 文件外部。这个问题已经有了答案,我尝试了所有代码,但滚动不起作用。我不知道我错过了什
我正在使用 Sprin AMQP 的rabbittemplate 通过 RabbitMQ 发送和接收消息。我能够发送和接收消息,但是,我想优先处理消息。 例如,如果我推送 1000 条消息,假设奇数消
我已经在 WorkManager 中加入了一个PeriodicWork,并希望每次完成时都获取它的 Worker 的输出数据,但以下代码似乎不起作用,因为 Log 消息没有出现在 Logcat 中:
我有一个名为 areaOne 的 AngularJS 指令。当我使用 template 时,会显示模板,但当我在 area1.js 中使用 templateUrl 时,不会呈现模板 HTML。 我在这
“:after”选择器在应用于带有 FF 和 IE 的输入时不起作用 input:after { content: "title"; } 而它正在处理 p、a 等。 这是一个错
下面是适用于 oracle 但不适用于 PostgreSQL 的 Sql 查询。 select count(*) from users where id>1 order by username; 我知
position?:fixed 在 chrome 浏览器上不工作,但在 firefox 中工作正常。 我有一个侧边栏可以停止滚动并固定在顶部。它在 firefox 中运行完美,但在 chrome 中,
我有一段代码无法在 Firefox 中运行。当按钮悬停时,.icon 图像不会改变。它在 Chrome 中完美运行。 button.add-to-cart-button .button-left .i
我是一名优秀的程序员,十分优秀!