有没有办法使DIV 垂直和水平居中,但重要的是,当窗口小于内容时,内容不会被剪切 div 必须具有背景颜色以及宽度和高度。
我总是以绝对定位和负边距居中 div,就像提供的示例一样。但它有一个问题,它会削减顶部的内容。有没有一种方法可以使 div .content 居中而不出现这个问题?
我这里有例子可以玩: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>
我的问题与“如何使元素水平和垂直居中?” 1-我的问题之前被问过。(只需检查日期)。2-我的问题问得很清楚,而且是黑色的:“当窗口小于内容时,内容不会被剪切”