在欢迎链接横幅中使用 emoji 替代图标

根据我的经验,是的:请参阅我在这里的截图:Third migration, once again for a niche forum (Volkswagen Campers vans)

有点取巧……但你只能用 CSS 来实现:

.featured-todo div {
    h3 {
        background: no-repeat top center;
        background-size: 30px 30px; // emoji width and height
        padding-top: 45px; // emoji height + 15 px margin down
        svg {
            display: none !important;
        }
    }
    &:first-child h3 {
        background-image: url("https://emoji.discourse-cdn.com/twitter/rocket.png");
    }
    &:nth-child(2) h3 {
        background-image: url("https://emoji.discourse-cdn.com/twitter/grin.png");
    }
    &:last-child h3 {
        background-image: url("https://emoji.discourse-cdn.com/twitter/+1.png");
    }
}

你指的是哪一部分?

4 个赞