当前位置:网站首页>七种让盒子水平垂直居中的方法
七种让盒子水平垂直居中的方法
2022-08-05 05:24:00 【MoXinXueWEB】
方法一:定位+ 平移
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
<style> .parent {
width: 500px; height: 500px; border: 1px solid #000; position: relative; } .child {
width: 100px; height: 100px; border: 1px solid #999; position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); } </style>
</head>
<body>
<div class="parent">
<div class="child">我是子元素</div>
</div>
</body>
</html>
方法二:弹性布局
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
<style> .parent {
width: 500px; height: 500px; border: 1px solid #000; display: flex; justify-content: center; align-items: center; } .child {
width: 100px; height: 100px; border: 1px solid #999; } </style>
</head>
<body>
<div class="parent">
<div class="child">我是子元素</div>
</div>
</body>
</html>
方法三:网格 Grid
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
<style> .parent {
width: 500px; height: 500px; border: 1px solid #000; display: grid; place-items: center; } .child {
width: 100px; height: 100px; border: 1px solid #999; } </style>
</head>
<body>
<div class="parent">
<div class="child">我是子元素</div>
</div>
</body>
</html>
方法四:margin:auto
;
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
<style> .parent {
width: 500px; height: 500px; border: 1px solid #000; position: relative; } .child {
width: 100px; height: 100px; border: 1px solid #999; position: absolute; margin: auto; top: 0; left: 0; right: 0; bottom: 0; } </style>
</head>
<body>
<div class="parent">
<div class="child">我是子元素</div>
</div>
</body>
</html>
方法五:表格布局
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
<style> .parent {
width: 500px; height: 500px; border: 1px solid #000; display: table-cell; vertical-align: middle; text-align: center; } .child {
width: 100px; height: 100px; border: 1px solid #999; display: inline-block; } </style>
</head>
<body>
<div class="parent">
<div class="child">我是子元素</div>
</div>
</body>
</html>
方法六:计算父盒子与子盒子的空间距离
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
<style> .parent {
width: 500px; height: 500px; border: 1px solid #000; } .child {
width: 100px; height: 100px; border: 1px solid #999; margin-top: 200px; margin-left: 200px; } </style>
</head>
<body>
<div class="parent">
<div class="child">我是子元素</div>
</div>
</body>
</html>
方法七:定位+负边距
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
<style> .parent {
width: 500px; height: 500px; border: 1px solid #000; position: relative; } .child {
width: 100px; height: 100px; border: 1px solid #999; position: absolute; top: 50%; left: 50%; margin-top: -50px; margin-left: -50px; } </style>
</head>
<body>
<div class="parent">
<div class="child">我是子元素</div>
</div>
</body>
</html>
边栏推荐
- 路由器和静态路由的配置
- 增长:IT运维发展趋势报告
- User and user group management, file permission management
- Quick question and quick answer - FAQ of Tencent Cloud Server
- [问题已处理]-虚拟机报错contains a file system with errors check forced
- Getting Started Doc 06 Adding files to a stream
- Spark source code-task submission process-6.1-sparkContext initialization-create spark driver side execution environment SparkEnv
- To TrueNAS PVE through hard disk
- Hugo搭建个人博客
- Browser Storage WebStorage
猜你喜欢
解决这三大问题,运维效率将超90%的医院
el-autocomplete使用
[Day6] File system permission management, file special permissions, hidden attributes
Dsf5.0 bounced points determine not return a value
VRRP原理及命令
[Day1] (Super detailed steps) Build a soft RAID disk array
In-depth Zabbix user guide - from the green boy
Mongodb query analyzer parsing
spark source code-RPC communication mechanism
VLAN介绍与实验
随机推荐
To TrueNAS PVE through hard disk
The problem come from line screening process
[问题已处理]-jenkins流水线checkout超时
VRRP principle and command
7 steps to complete cloud monitoring
ALC实验
交换机原理
时间复杂度和空间复杂度
正则表达式小实例--验证邮箱地址
VRRP概述及实验
The highlight moment of operation and maintenance starts with intelligence
Hard Disk Partitioning and Permanent Mounting
通过反射获取Class对象的四种方式
What are some things that you only know when you do operation and maintenance?
Wechat applet page jump to pass parameters
Spark source code - task submission process - 6-sparkContext initialization
Spark source code - task submission process - 4-container to start executor
Tencent Cloud Message Queue CMQ
线上问题排查流程
Small example of regular expression--validate email address