首页 > 作文

实现盒子居中

更新时间:2023-04-03 20:35:13 阅读: 评论:0

主流浏览器及其内核

主流浏览器内核IE tridentFirefoxGeckoGoogleWebkitSafari (苹果)Webkit

已知宽高实现盒子水平垂直居中

<style type="text/css">    .box {        border: 1px solid #00ee0公立学校0;   纪检委员     height: 300px;        position:relative;    }    .box1 {        position:absolute;        left:50%;        top:50%;        margin-left:-100px;        margin-top:-100px;        width: 200px;        height: 200px;        border: 龚晓跃1px solid red;            }    </style></head><body>    <div class="box">        <div class="box1"></div>    </div></body>

效果图

宽高不定实现盒子水平垂直居中

<style type="text/css">  .box {    bord勇敢说不er: 1px solid #00ee00;    height: 300px;    大学请假条格式position: relative;  }    body{    width: 200px;    height: 200px;  }  .box1 {    border: 1px solid red;    position: absolute;    top: 50%;    left: 50%;    transform: translate(-50%, -50%);  }</style></head><body><div class="box">  <div class="box1">    哈哈哈哈哈哈哈哈哈哈<br>    哈哈哈哈哈哈哈哈哈哈<br>    哈哈哈哈哈哈哈哈哈哈      </div></div></body>

效果图:

本文地址:https://blog.csdn.net/qq_45814232/article/details/109264785

本文发布于:2023-04-03 20:35:11,感谢您对本站的认可!

本文链接:https://www.wtabcd.cn/fanwen/zuowen/0cd10a8181a2b3582ed03d54bd50cc97.html

版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系,我们将在24小时内删除。

本文word下载地址:实现盒子居中.doc

本文 PDF 下载地址:实现盒子居中.pdf

相关文章
留言与评论(共有 0 条评论)
   
验证码:
推荐文章
排行榜
  • 实现盒子居中
    主流浏览器及其内核主流浏览器内核IE tridentFirefoxGeckoGoogleWebkitSafari (苹果)Webkit已知宽高实现盒子水平垂直居中