css水平垂直居中5种方式实现

3 篇文章 0 订阅
本文探讨了如何使用CSS中的Flexbox和Grid布局技术,配合相对定位调整元素,实现网页在不同设备上的自适应设计。通过实例演示了如何创建一个200x200px的容器中居中的蓝色核心区域,展示了响应式设计的核心概念。
摘要由CSDN通过智能技术生成
<style>
  /* .demon{
    width: 200px;
    height: 200px;
    border:1px solid #e9e9e9;
    position: relative;
  }
  .hart{
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    margin: auto;
    width: 80px;
    height: 80px;
    background: blueviolet;
  } */
  /* .demon{
    width: 200px;
    height: 200px;
    border: 1px solid pink;
    display: grid;
  }
  .hart{
    margin: auto;
  } */

  /* .demon{
    width: 200px;
    height: 200px;
    border: 1px solid greenyellow;
    position: relative;
  }
  .hart{
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%,-50%);
  } */
  /* .demon{
    width: 300px;
    height: 300px;
    border: 1px solid #666999;
    position: relative;
  }
  .hart{
    position: absolute;
    width: 100px;
    height: 100px;
    background-color: blueviolet;
    left: 50%;
    top: 50%;
    margin: -50px 0  0 -50px;
  } */
  .demon{
    width: 200px;
    height: 200px;
    border: 1px solid red;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  
</style>
 <div class="demon">
    <div class="hart">今天天气不错</div>
  </div>
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值