日本免费高清视频-国产福利视频导航-黄色在线播放国产-天天操天天操天天操天天操|www.shdianci.com

學無先后,達者為師

網(wǎng)站首頁 編程語言 正文

Css設置border從中間向兩邊的顏色漸進效果

作者:耳東君吶 更新時間: 2022-01-11 編程語言

示例如下:

?

html部分

  <div class="globalTitle">
                        <img src="images/globalTitleleft.png" alt="">
                        <p>供水壓力分布</p>
                        <img src="images/globalTitleright.png" alt="">
                    </div>

css部分

.globalTitle {
    width: 100%;
    height: 58px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    border-bottom: 1px solid;
    border-image: -webkit-linear-gradient(-270deg, rgba(255, 255, 255, 0.00) 0%, #00BBF2 20%, rgba(255, 255, 255, 0.00) 99%) 2 2 2 2;
    border-image: -moz-linear-gradient(-270deg, rgba(255, 255, 255, 0.00) 0%, #00BBF2 20%, rgba(255, 255, 255, 0.00) 99%) 2 2 2 2;
    border-image: linear-gradient(-270deg, rgba(255, 255, 255, 0.00) 0%, #00BBF2 20%, rgba(255, 255, 255, 0.00) 99%) 2 2 2 2;
}

原文鏈接:https://blog.csdn.net/chenchang0419/article/details/122100905

欄目分類
最近更新