千家信息网

css如何实现凸显布局

发表于:2025-01-19 作者:千家信息网编辑
千家信息网最后更新 2025年01月19日,小编给大家分享一下css如何实现凸显布局,相信大部分人都还不怎么了解,因此分享这篇文章给大家参考一下,希望大家阅读完这篇文章后大有收获,下面让我们一起去了解一下吧!凸显布局凸显布局指容器内节点以同一方
千家信息网最后更新 2025年01月19日css如何实现凸显布局

小编给大家分享一下css如何实现凸显布局,相信大部分人都还不怎么了解,因此分享这篇文章给大家参考一下,希望大家阅读完这篇文章后大有收获,下面让我们一起去了解一下吧!

凸显布局

凸显布局指容器内节点以同一方向排列且存在一个节点在某个方向上较突出的占位布局。该布局描述起来可能比较拗口,直接看以下效果吧,这是一个横向列表,节点从左往右排列,最右边的节点特别突出。这就是凸显布局的特征,凸显的节点可在凸显布局任意位置,上下左右左上左下右上右下都行。

这里巧妙运用margin-*:auto实现了凸显布局。相信大家实现水平居中固定宽度的块元素都会使用margin:0 auto

在此同样原理,当节点声明margin-*:auto时,浏览器会自动计算剩余空间并将该值赋值给该节点。在使用该技巧时必须基于flex布局

  • Alibaba
  • Tencent
  • Baidu
  • Jingdong
  • Ant
  • Netease
.highlight-layout {    display: flex;    align-items: center;    padding: 0 10px;    width: 600px;    height: 60px;    background-color: #3c9;    li {        padding: 0 10px;        height: 40px;        background-color: #3c9;        line-height: 40px;        font-size: 16px;        color: #fff;    }    &.left li {        &:not(:first-child) {            margin-left: 10px;        }        &:last-child {            margin-left: auto;        }    }    &.right li {        &:not(:last-child) {            margin-right: 10px;        }        &:first-child {            margin-right: auto;        }    }    &.top {        flex-direction: column;        width: 120px;        height: 400px;        li {            &:not(:first-child) {                margin-top: 10px;            }            &:last-child {                margin-top: auto;            }        }    }    &.bottom {        flex-direction: column;        width: 120px;        height: 400px;        li {            &:not(:last-child) {                margin-bottom: 10px;            }            &:first-child {                margin-bottom: auto;            }        }    }}

在此还有一个小技巧,那就是:not():first-child:last-child的巧妙运用。这样组合让特殊位置的节点直接减少属性覆盖的问题,不仅易读还能装逼。

  • :not(:first-child):排除首节点,其他节点都使用某些样式

  • :not(:last-child):排除尾节点,其他节点都使用某些样式

以上是"css如何实现凸显布局"这篇文章的所有内容,感谢各位的阅读!相信大家都有了一定的了解,希望分享的内容对大家有所帮助,如果还想学习更多知识,欢迎关注行业资讯频道!

0