CSS content no-open-quote 属性值 案例展示
<style>
a.demo-content:before {
content: open-quote;
}
a.demo-content:after {
content: close-quote;
}
a.demo-content.no-open-quote:before {
content: no-open-quote;
}
/* a.demo-content.no-open-quote:after {
content: no-close-quote;
} */
</style>
<a class="demo-content" href="https://www.xiaoyuzl.com" target="_blank">小鱼资料库</a><br>
<a class="demo-content no-open-quote" href="https://www.xiaoyuzl.com" target="_blank">小鱼资料库</a>
效果