博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
小结——居中问题的解决
阅读量:4982 次
发布时间:2019-06-12

本文共 2454 字,大约阅读时间需要 8 分钟。

居中问题:

1.Fixed定位margin:0 auto;不管用,水平居中需要做如下处理:
position: fixed;top: 0;bottom: 0;left: 0;right: 0;margin: auto;
2.relative定位margin:0 auto;管用,水平居中需要做如下处理:
position: relative;display: flex;flex-direction: column;margin: 0 auto;
3.absolute定位 加margin 元素已知宽度

父元素设置为:position: relative;

子元素设置为:position: absolute;
距上50%,据左50%,然后减去元素自身宽度的距离就可以实现

.box { background-color: #FF8C00; width: 300px; height: 300px; position: relative;}.content { background-color: #F00; width: 100px; height: 100px; position: absolute; left: 50%; top: 50%; margin: -50px 0 0 -50px;}
4.absolute定位 加transform 元素未知宽度

如果元素未知宽度,只需将上面例子中的margin: -50px 0 0 -50px;替换为:transform: translate(-50%,-50%);

.box { background-color: #FF8C00; width: 300px; height: 300px; position: relative;}.content { background-color: #F00; width: 100px; height: 100px; position: absolute; left: 50%; top: 50%; transform: translate(-50%,-50%);}
5.flex布局 (存在兼容性问题)
.box { background-color: #FF8C00; width: 300px; height: 300px; display: flex;//flex布局 justify-content: center;//使子项目水平居中 align-items: center;//使子项目垂直居中}.content { background-color: #F00; width: 100px; height: 100px;}
6.able-cell布局

因为table-cell相当与表格的td,td为行内元素,无法设置宽和高,所以嵌套一层,嵌套一层必须设置display: inline-block;td的背景覆盖了橘黄色,不推荐使用

.box { background-color: #FF8C00;//橘黄色 width: 300px; height: 300px; display: table;}.content { background-color: #F00;//红色 display: table-cell; vertical-align: middle;//使子元素垂直居中 text-align: center;//使子元素水平居中}.inner { background-color: #000;//黑色 display: inline-block; width: 20%; height: 20%;}
7.js的事件监听也可以(css可以实现的不推荐使用,出于性能问题考虑)

如果是随屏幕变化,而居中的,也可以使用js

//1.监听轮播左移动距离window.addEventListener('resize',changeDivLeft,false)function changeDivLeft(){                   var w = document.documentElement.clientWidth || document.body.clientWidth;    var leftRange = (w-1920)/2;//1920是图片容器宽度//  console.log(w,leftRange);    $(".swiper-container").css({"left":leftRange});   }//2.可简化改版为自执行函数(function(){    window.onresize = arguments.callee;    var w = document.documentElement.clientWidth || document.body.clientWidth;    var leftRange = (w-1920)/2;//1920是图片容器宽度    $(".swiper-container").css({"left":leftRange});   })();

转载于:https://www.cnblogs.com/missme-lina/p/10218926.html

你可能感兴趣的文章
Java基于Tomcat Https keytool 自签证书
查看>>
机房收费调试问题(一)
查看>>
Perl多进程处理Web日志
查看>>
Oracle中MD5+Base64加密实现
查看>>
linux 编辑文档
查看>>
Java中ArrayList类的用法(转)
查看>>
作业5 指针应用1。
查看>>
关于JAVA项目中的常用的异常处理情况总结
查看>>
字段类型的选择原则
查看>>
StructLayoutLayout 属性无法通过GetCustomAttributes 或者 Attributes获得
查看>>
如何一键收藏微信文章?
查看>>
二维码图片以字符串的形式保存DB,已文件流显示页面上
查看>>
install
查看>>
好久没有写东西了发一个1年前写的东西
查看>>
Struts2、Spring、Hibernate 高效开发的最佳实践(转载)
查看>>
使用cmd查看电脑连接过的wifi密码并将密码发送至指定邮箱(三)
查看>>
u3d 场景资源打包
查看>>
123
查看>>
hdu 1874
查看>>
最优比例生成树最优比率生成树 01分数规划问题
查看>>