作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
下面的代码将焦点放在中间的 div 上,但该 div 出现在窗口的底部。如何使该 div 居中,使其显示在窗口的中心[垂直],而不设置固定位置。
$(function(){
$("#focus").focus().addClass('getCentered');;
setTimeout(function() {
$('#focus').css("background-color", "white");
}, 1000);
});
.top{background:red;height:400px;width:2oopx}
#focus{background:#ededed;height:40px;width:2oopx}
.bottom{background:green;height:300px;width:2oopx}
The code below focuses on the middle `div` but the div focused is shown at the bottom of the page. How can I center that div so that it is shown at center of page[vertically] without setting position fixed.
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.1/jquery.min.js"></script>
<div class="top">hello</div>
<div id="focus" tabindex="1">Hello world</div>
<div class="bottom">world</div>
已修复。
最佳答案
$(function(){
$("#focus").focus().addClass('getCentered');;
setTimeout(function() {
$('#focus').css("background-color", "white");
}, 1000);
});
.top{background:red;height:400px;width:2oopx}
#focus{ display: table; background:#ededed; height:40px; width:200px }
.bottom{background:green;height:300px;width:2oopx}
h4 { display: table-cell; vertical-align: middle; }
The code below focuses on the middle `div` but the div focused is shown at the bottom of the page. How can I center that div so that it is shown at center of page[vertically] without setting position fixed.
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.1/jquery.min.js"></script>
<div class="top">hello</div>
<div id="focus" tabindex="1"><h4>Hello Text</h4></div>
<div class="bottom">world</div>
关于javascript - 如何将焦点集中的div居中? [垂直],我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/35844391/
我是一名优秀的程序员,十分优秀!