博客园  :: 首页  :: 新随笔  :: 联系 :: 订阅 订阅  :: 管理

css 心得随记

Posted on 2024-11-08 13:10  火冰·瓶  阅读(0)  评论(0编辑  收藏  举报

css的class中的父子关系

比如:

.content > .center   表示center是content 的直接子元素

.content  .center   表示center是content 的任意子元素

-----------------------------------------------------

display: -webkit-flex;
display: flex;
justify-content: space-between;    /*分散对齐*/
gap: 15px;     /*每个子元素之间的间距15px*/

height: 100vh;    /*跟设备一样高*/

background-color: rgb(185,180,180,0.5);    /*半透明*/

--------------------------------------------------

position: absolute;
width: 428px;
height: 79px;
left: calc(50% - 214px);   /*水平居中布局*/
top: 5px;