专业网站建设品牌,十四年专业建站经验,服务6000+客户--广州京杭网络
免费热线:400-683-0016      微信咨询  |  联系我们

html不用class怎么居中_CSS学习

当前位置:网站建设 > 技术支持
资料来源:网络整理       时间:2023/3/4 2:29:18       共计:3597 浏览

html不用class怎么居中?

第一种:将元素通过display:inline-block转化为行内块元素居中,例如:

.box{width:500px;height:500px;box-shadow:0 0 5px #000;text-align:center;font-size:0;}

.box .zi{width:120px;height:100px;background:#0f0;display:inline-block;vertical-align:middle;}

.box:after{content:"";display:inline-block;height:100%;vertical-align:middle;}

第二种:用定位的方式将之移动到位置,例如:

.box{width:500px;height:500px;box-shadow:0 0 5px #000;position:relative;}

.box .zi{width:120px;height:100px;background:#0f0;

position:absolute;left:0;right:0;top:0;bottom:0;margin:auto;}

第三种:类似第二中只不过通过百分比调整位置,例如

.box{width:500px;height:500px;box-shadow:0 0 5px #000;position:relative;}

.box .zi{width:120px;height:100px;background:#0f0;position:absolute;left:50%;top:50%;margin:-50px 0 0 -60px;}

第四种:类似第三种,但是在调整回到中心位置时使用transform:translate( ,)进行调整,例如

.box{width:500px;height:500px;box-shadow:0 0 5px #000;position:relative;}

.box .zi{width:120px;height:100px;background:#0f0;

position:absolute;left:50%;top:50%;transform:translate(-50%,-50%);}

第五种:使用弹性盒(display:flex),例如

.box{width:500px;height:500px;box-shadow:0 0 5px #000;display:flex;justify-content:center;align-items:center;}

.box .zi{width:120px;height:100px;background:#0f0;}

以上最常用的五种方式,除此之外还有很多方式,根据每个人的习惯不同个人用法不同,

版权说明:
本网站凡注明“广州京杭 原创”的皆为本站原创文章,如需转载请注明出处!
本网转载皆注明出处,遵循行业规范,如发现作品内容版权或其它问题的,请与我们联系处理!
欢迎扫描右侧微信二维码与我们联系。
·上一条:绿叶版和不可思议的迷宫下载地址_CSS学习 | ·下一条:机器猫第一部有多少集_CSS学习

Copyright © 广州京杭网络科技有限公司 2005-2024 版权所有    粤ICP备16019765号 

广州京杭网络科技有限公司 版权所有