分享web开发知识

注册/登录|最近发布|今日推荐

主页 IT知识网页技术软件开发前端开发代码编程运营维护技术分享教程案例
当前位置:首页 > 网页技术

【HTML】div居中显示

发布时间:2023-09-06 01:49责任编辑:蔡小小关键词:HTMLdiv

方法1:

.parent { ?????????width:800px; ?????????height:500px; ?????????border:2px solid #000; ?????????position:relative;} .child { ???????????width:200px; ???????????height:200px; ???????????margin: auto; ?????????????position: absolute; ?????????????top: 0; left: 0; bottom: 0; right: 0; ????????????background-color: red;}

方法2:

.parent { ???????????width:800px; ???????????height:500px; ???????????border:2px solid #000; ???????????display:table-cell; ???????????vertical-align:middle; ???????????text-align: center; ???????} ???????.child { ???????????width:200px; ???????????height:200px; ???????????display:inline-block; ???????????background-color: red; ???????}

方法3:

.parent { ???????????width:800px; ???????????height:500px; ???????????border:2px solid #000; ???????????display:flex; ???????????justify-content:center; ???????????align-items:center; ???????} ???????.child { ???????????width:200px; ???????????height:200px; ???????????background-color: red; ???????}

方法4:

.parent { ???????????width:800px; ???????????height:500px; ???????????border:2px solid #000; ???????????position:relative; ???????} ???????.child { ???????????width:300px; ???????????height:200px; ???????????margin:auto; ???????????position:absolute;/*设定水平和垂直偏移父元素的50%,再根据实际长度将子元素上左挪回一半大小*/ ???????????left:50%; ???????????top:50%; ???????????margin-left: -150px; ???????????margin-top:-100px; ???????????background-color: red; ???????}

【HTML】div居中显示

原文地址:https://www.cnblogs.com/mqxs/p/8846732.html

知识推荐

我的编程学习网——分享web前端后端开发技术知识。 垃圾信息处理邮箱 tousu563@163.com 网站地图
icp备案号 闽ICP备2023006418号-8 不良信息举报平台 互联网安全管理备案 Copyright 2023 www.wodecom.cn All Rights Reserved