当前位置: 代码迷 >> 综合 >> div悬浮居中
  详细解决方案

div悬浮居中

热度:51   发布时间:2023-09-22 15:30:36.0

<style>

.div{

position:fixed;

margin:auto;

left:0;

right: 0;

top:0;

bottom: 0;

background-color:black;

width:200px;

height:100px;

}

</style>


<div class="div" >悬浮居中</div>

  相关解决方案