html 垂直居中一般用什么意思,详解html的几种水平垂直居中的方式(基础)

本文详细介绍了五种在CSS中实现元素水平垂直居中的方法,包括使用绝对定位、transform属性、Flexbox布局以及老版和新版Flex布局。通过这些方法,开发者可以灵活地将元素在网页上居中显示。

摘要生成于 C知道 ,由 DeepSeek-R1 满血版支持, 前往体验 >

d第一种

.Centered1{

background-color: #800070;

width: 100%;

height:500px;

position: relative;

}

.Centered1 p{

width: 200px;

height: 200px;

background-color: deeppink;

line-height: 200px;

text-align: center;

position: absolute;

left: 0;

bottom: 0;

right:0;

top: 0;

margin: auto;

}

第二种方法

d第二种

/*第二种方法水平垂直居中*/

.Centered2{

background-color: #ef8518;

width: 100%;

height: 500px;

position: relative;

}

.Centered2 p {

position: absolute;

width: 200px;

height: 200px;

background-color:red;

line-height: 200px;

text-align: center;

left: 50%;

top:50%;

margin-left:-100px;

margin-top: -100px;

}

第三种方法

d第三种

/*第三种方法水平垂直居中*/

.Centered3{

background-color: dimgrey;

width: 100%;

height: 500px;

position: relative;

}

.Centered3 p {

position: absolute;

width: 200px;

height: 200px;

background-color:darkorange;

line-height: 200px;

text-align: center;

left: 50%;

top: 50%;

transform:translate(-50%,-50%);

}

第四种方法

d第四种

/*第四种方法水平垂直居中,老版本flex布局*/

.Centered4{

background-color: #FF4444;

width: 100%;

height: 500px;

display: -webkit-box;

-webkit-box-pack:center;

-webkit-box-align: center;

}

.Centered4 p {

width: 200px;

height: 200px;

background-color:cadetblue;

line-height: 200px;

text-align: center;

}

第五种方法

d第五种

/*第五种方法水平垂直居中,新版本的flex水平垂直居中*/

.Centered5{

background-color: darkslateblue;

width: 100%;

height: 500px;

display: flex;

justify-content:center;

align-items: center;

}

.Centered5 p {

width: 200px;

height: 200px;

background-color:fuchsia;

line-height: 200px;

text-align: center;

}

以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持脚本之家。

1428d0e076c3959ab11d28a39bc84fab.png

5268f80b9b1e01f982625ef6fac83ca1.png

本条技术文章来源于互联网,如果无意侵犯您的权益请点击此处反馈版权投诉

本文系统来源:php中文网

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值