标签搜索

目 录CONTENT

文章目录

css实现角标效果并带有文章或图标效果(完整代码)

沙漠渔溏 / 2025-08-23 10:50:56 / 共计1,186 字
温馨提示:
本文最后更新于 2025-08-23,若内容或图片失效,请留言反馈。部分素材来自网络,若不小心影响到您的利益,请联系我们删除。

代码示例:

.coupon_card.active {
    border: 1px solid #f32121;
    position: relative;
}
.coupon_card.active::after {
    content: '';

    position: absolute;
    right: 0;
    bottom: 0;
    border-width: 0 0 20px 20px;
    border-style: solid;
    border-color: transparent transparent #f32121;

}
.coupon_card.active::before {
        content: '';
        position: absolute;
        width: 10px;
        height: 6px;
        background: transparent;
        bottom: 4px;
        right: 2px;
        border: 2px solid white;
        border-top: none;
        border-right: none;
        -webkit-transform: rotate(-55deg);
        -ms-transform: rotate(-55deg);
        transform: rotate(-55deg);
        z-index: 9;
 }

效果图:

到此这篇关于css实现角标效果并带有文章或图标的文章就介绍到这了,更多相关css角标效果内容请搜索 『沙漠渔溏』 以前的文章或继续浏览下面的相关文章,希望大家以后多多支持 『沙漠渔溏』 !