为了账号安全,请及时绑定邮箱和手机立即绑定

水平和垂直居中DIV

水平和垂直居中DIV

BIG阳 2019-07-26 16:57:55
水平和垂直居中DIV 有没有办法垂直和水平地居中DIV,但重要的是,当窗口小于内容时,内容不会被切割 .div必须具有背景颜色和宽度和高度。我总是将div与绝对定位和负边距居中,就像在提供的示例中一样。但它存在的问题是它会削减内容。有没有一种方法可以在没有这个问题的情况下使div .content居中?我在这里有一个例子:http://jsbin.com/iquviq/1/editCSS: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-我的问题非常清楚,并以黑色为条件:“当窗口小于内容时,内容不会被删除”
查看完整描述

3 回答

?
白板的微信

TA贡献1883条经验 获得超3个赞

对于现代浏览器

当你拥有那种奢侈品。还有flexbox,但在撰写本文时并没有广泛支持。

HTML:

<div class="content">This works with any content</div>

CSS:

.content {
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);}

CodepenJSBin上进一步修补它

对于旧的浏览器支持,请查看此线程中的其他位置


查看完整回答
反对 回复 2019-07-26
  • 3 回答
  • 0 关注
  • 414 浏览
慕课专栏
更多

添加回答

举报

0/150
提交
取消
意见反馈 帮助中心 APP下载
官方微信