亚洲激情专区-91九色丨porny丨老师-久久久久久久女国产乱让韩-国产精品午夜小视频观看

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

css如何實現凸顯布局

發布時間:2022-03-19 15:31:53 來源:億速云 閱讀:371 作者:小新 欄目:開發技術

小編給大家分享一下css如何實現凸顯布局,相信大部分人都還不怎么了解,因此分享這篇文章給大家參考一下,希望大家閱讀完這篇文章后大有收獲,下面讓我們一起去了解一下吧!

凸顯布局

凸顯布局指容器內節點以同一方向排列且存在一個節點在某個方向上較突出的占位布局。該布局描述起來可能比較拗口,直接看以下效果吧,這是一個橫向列表,節點從左往右排列,最右邊的節點特別突出。這就是凸顯布局的特征,凸顯的節點可在凸顯布局任意位置,上下左右左上左下右上右下都行。

css如何實現凸顯布局

這里巧妙運用margin-*:auto實現了凸顯布局。相信大家實現水平居中固定寬度的塊元素都會使用margin:0 auto

在此同樣原理,當節點聲明margin-*:auto時,瀏覽器會自動計算剩余空間并將該值賦值給該節點。在使用該技巧時必須基于flex布局

css如何實現凸顯布局

css如何實現凸顯布局

css如何實現凸顯布局

css如何實現凸顯布局

<ul class="highlight-layout">
    <li>Alibaba</li>
    <li>Tencent</li>
    <li>Baidu</li>
    <li>Jingdong</li>
    <li>Ant</li>
    <li>Netease</li>
</ul>
.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如何實現凸顯布局”這篇文章的所有內容,感謝各位的閱讀!相信大家都有了一定的了解,希望分享的內容對大家有所幫助,如果還想學習更多知識,歡迎關注億速云行業資訊頻道!

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

css
AI

东乌珠穆沁旗| 象州县| 珲春市| 高清| 宽甸| 比如县| 台前县| 奈曼旗| 锦屏县| 辽阳市| 镇坪县| 城市| 余姚市| 株洲县| 彩票| 阿拉善右旗| 囊谦县| 巍山| 冀州市| 郎溪县| 南乐县| 慈利县| 桃源县| 丽水市| 青浦区| 交口县| 洛浦县| 阿瓦提县| 蓝山县| 新安县| 建湖县| 新疆| 同江市| 夏河县| 邹城市| 昔阳县| 海晏县| 通河县| 德昌县| 高阳县| 资溪县|