水平和垂直居中DIV

水平和垂直居中DIV 

有没有办法垂直和水平地居中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-我的问题非常清楚,并以黑色为条件:“当窗口小于内容时,内容不会被删除”


BIG阳
浏览 415回答 3
3回答

白板的微信

对于现代浏览器当你拥有那种奢侈品。还有flexbox,但在撰写本文时并没有广泛支持。HTML:<div&nbsp;class="content">This&nbsp;works&nbsp;with&nbsp;any&nbsp;content</div>CSS:.content&nbsp;{ &nbsp;&nbsp;position:&nbsp;absolute; &nbsp;&nbsp;left:&nbsp;50%; &nbsp;&nbsp;top:&nbsp;50%; &nbsp;&nbsp;-webkit-transform:&nbsp;translate(-50%,&nbsp;-50%); &nbsp;&nbsp;transform:&nbsp;translate(-50%,&nbsp;-50%);}在Codepen或JSBin上进一步修补它对于旧的浏览器支持,请查看此线程中的其他位置
打开App,查看更多内容
随时随地看视频慕课网APP