kiddo 非常简单,forum.css 先格式化,找到这段代码块
.comicsans {
font-family: 'Comic Sans MS',sans-serif;
background-image: -webkit-gradient(linear, left top, right top, color-stop(0, #f22), color-stop(.15, #f2f), color-stop(.3, #22f), color-stop(.45, #2ff), color-stop(.6, #2f2), color-stop(.75, #2f2), color-stop(.9, #ff2), color-stop(1, #f22));
background-image: gradient(linear, left top, right top, color-stop(0, #f22), color-stop(.15, #f2f), color-stop(.3, #22f), color-stop(.45, #2ff), color-stop(.6, #2f2), color-stop(.75, #2f2), color-stop(.9, #ff2), color-stop(1, #f22));
background-size: 200px auto;
color: transparent;
text-transform: uppercase;
-webkit-background-clip: text;
background-clip: text;
animation: ComicSansRainbow 2s linear infinite
}
if(window.hljsLoader && !document.currentScr(๐•ᴗ•๐).parentNode.hasAttribute('data-s9e-livepreview-onupdate')) {
window.hljsLoader.highlightBlocks(document.currentScr(๐•ᴗ•๐).parentNode);
}
给 text-transform: uppercase;
删掉就可以了。