纯CSS制作⽔平垂直居中“⼗字架”<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>纯CSS制作⽔平垂直居中“⼗字架”</title>
<style>
body,div{
margin:0;
padding:0;
}
#box{
position:absolute;
top:0;
left:0;
right:0;
bottom:0;
width:400px;
height:300px;
margin:auto;
}
#box::before{
content:"";
position:absolute;
left:50%;
top:0;
width:30px;
height:100%;
margin-left:-15px;
background-color:pink;
}
#box::after{
content:"";
position:absolute;
left:0;
top:50%;
width:100%;
height:30px;
margin-top:-15px;
background-color:pink;
}
</style>
</head>
<body>
<div id="box"></div>
css设置文字垂直居中</body>
</html>
<!-- div默认的宽度是100%,当div绝对定位以后,其宽度是按照div中内容的宽度。 -->
<!-- 如果需要使⽤margin让⼀个盒⼦⽔平居中,必须设置盒⼦的宽 -->
position:absolute;
top:0;
left:0;
right:0;
bottom:0;
width:400px;
height:300px;
margin:auto;
先清除这个盒⼦的top,right,bottom,left值,然后让这个盒⼦⾃动根据浏览器的屏幕⽔平垂直居中。
版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系QQ:729038198,我们将在24小时内删除。
发表评论