.sl-count {
font-size: 0; // hide the text inside the button
}
.sl-count span {
font-size: 16px; // we do want to show the spans
}
// insert text using an :after element and give it font-size to make it visible.
.sl-count:after {
content: "Something else.";
font-size: 16px;
}
1条答案
按热度按时间fzwojiic1#
你可以这样做:
这不是一个好的解决方案,因为HTML仍然读取旧的文本,所以SEO/Accessibility不会读取来自CSS的文本。