校招刷题群
高效刷题 迎战校招
校招精选试题
近年面笔经面经群内分享
Java刷题群 前端刷题群 产品运营群
首页 > js语言和框架 > 语法相关-操作符相关
题目

一个200*200的div在不同分辨率屏幕上下左右居中,用css实现

解答
<style>
/*一个200*200的div在不同分辨率屏幕上下左右居中,用css实现*/
div
{
background: red;
position:absolute;
width:200px;
height:200px;
top:50%;
left:50%;
margin-left:-50px;
height:-50px;
z-index:1000;
}
</style>


C 3条回复 评论
清廉阁老周延儒

上完课拿到想要的offer了!!谢谢大拿老师!

发表于 2021-09-09 16:10:00
0 0
水之相夏

{   position:fixed;

    left:0;

 right:0;

 top:0;

 bottom:0;

 margin:auto; 

}

发表于 2020-10-10 13:49:53
0 0
fhkd

#container{
width:200px;
height:200px;
position: absolute;
top:50%;
left:50%;
margin-top:-50px;
margin-left: -50px;
background-color: #9ACD32;
}

发表于 2020-08-28 11:18:56
0 0