您的位置:首页 > 房产 > 家装 > 河南省重点项目建设网_外贸平台管理制度_seo首页关键词优化_bt磁力兔子引擎

河南省重点项目建设网_外贸平台管理制度_seo首页关键词优化_bt磁力兔子引擎

2024/12/21 20:07:30 来源:https://blog.csdn.net/weixin_42462436/article/details/131477846  浏览:    关键词:河南省重点项目建设网_外贸平台管理制度_seo首页关键词优化_bt磁力兔子引擎
河南省重点项目建设网_外贸平台管理制度_seo首页关键词优化_bt磁力兔子引擎

Html CSS 布局,位置处理

1、居中布局

1、div 让内部div居中对齐

  • html
<div class="container"><div class="item">I am centered!</div>
</div>
  • style
      .container {border: 2px solid rgb(75, 70, 74);border-radius: .5em;height: 200px;display: flex;align-items: center;   /*调整y方向的位置 start 顶端对齐,center居中,end底端对齐*/justify-content: center;  /*调整x方向位置  left 左对齐  center居中   right右对齐*/}.item {border: 2px solid rgb(95, 97, 110);border-radius: .5em;padding: 20px;width: 10em;text-align: center;}

div全局居中对齐

  • html
  <div class="box"></div>
  • style
.box{width:100px;height:100px;background-color: cyan;position: absolute;top:50%;left: 50%;transform: translate(-50%,-50%);}

使用盒子模式让内部div居中

display: -webkit-box;-webkit-box-orient: horizontal;-webkit-box-pack: center;-webkit-box-align: center;display: -moz-box;-moz-box-orient: horizontal;-moz-box-pack: center;-moz-box-align: center;display: -o-box;-o-box-orient: horizontal;-o-box-pack: center;-o-box-align: center;display: -ms-box;-ms-box-orient: horizontal;-ms-box-pack: center;-ms-box-align: center;display: box;box-orient: horizontal;box-pack: center;box-align: center;

使用绝对定位让div居中

position: absolute;
top: 50%;
left: 50%;
-webkit-transform: translate(-50%, -50%);
-moz-transform: translate(-50%, -50%);
-ms-transform: translate(-50%, -50%);
-o-transform: translate(-50%, -50%);
transform: translate(-50%, -50%);

版权声明:

本网仅为发布的内容提供存储空间,不对发表、转载的内容提供任何形式的保证。凡本网注明“来源:XXX网络”的作品,均转载自其它媒体,著作权归作者所有,商业转载请联系作者获得授权,非商业转载请注明出处。

我们尊重并感谢每一位作者,均已注明文章来源和作者。如因作品内容、版权或其它问题,请及时与我们联系,联系邮箱:809451989@qq.com,投稿邮箱:809451989@qq.com