有没有一种方法可以实现 垂直和水平的 DIV 居中但是,这很重要,那就是 当窗口小于内容时,内容不会被剪切 Div 必须具有背景颜色、宽度和高度。
我总是用绝对定位和负边距来居中 div,就像上面提供的例子一样。但问题是,它把内容从顶部剪掉了。是否有将 div 居中的方法。没有这个问题的内容?
我这里有一个例子: http://jsbin.com/iquviq/1/edit
CSS:
body { margin: 0px; }
.background {
width: 100%;
height: 100%;
margin: 0;
padding: 0;
background-color: yellow;
}
/*
is there a better way than the absolute positioning and negative margin to center the div .content: div with background color a width and a hight?:
*/
.content {
width: 200px;
height: 600px;
background-color: blue;
position:absolute;
top:50%;
left:50%;
margin-left:-100px;/* half width*/
margin-top:-300px;/* half height*/
}
HTML:
<div class="background">
<div class="content"> some text </div>
</div>
我的问题不是“如何使一个元素水平和垂直居中?”我的问题以前被问过。(只是检查日期)。2-我的问题问得非常清楚,黑色作为条件: “当窗口小于内容时,内容将不会被删除。”