双列自适应广告位代码,支持文字和图片。
adp.webp


html 代码

<div class="ad">
    <!--图片横幅广告-->
    <a href="#1" target="_blank"><img src="图片地址"></a>
    <!--自适应文字广告-->
    <div class="zuo text-ad"><a href="#2" target="_blank" style="background:#01AAED;">广告招商虚位以待</a></div>
    <div class="you text-ad"><a href="#3" target="_blank" style="background:#2F4056;">广告招商虚位以待</a></div>
</div>

css 代码

/**广告位CSS**/
.ad {
    background: #fff;
    overflow: hidden;
    clear: both;
    margin: 10px 0 0;
    padding: 8px;
}

.ad img {
    max-width: 100%;
}

.ad .text-ad {
    width: 50%;
}

.ad .text-ad a {
    margin: 6px 0 0;
    display: block;
    height: 60px;
    line-height: 60px;
    color: #fff;
    font-size: 24px;
    text-align: center;
}

.zuo {
    float: left;
}

.you {
    float: right;
}

@media(max-width:999px) {
    .ad .text-ad {
        width: 100%;
    }
}
转载请注明出处,谢谢😘