我想更改页面younow的聊天窗口fontcolor / fontsize。我能够更改字体大小,但我无法更改字体颜色。 如何更改聊天窗口的字体颜色?这就是我正在使用的内容:
document.getElementById("chatcomments").setAttribute('style','font-size:36px; color:red !important;');
答案 0 :(得分:0)
我访问了该链接并解决了您的问题。这个css代码可以解决这个问题。不需要javascript。
.comment-content{
font-size: 20px;
}
.comment-content a,
.comment-content span,
.comment-content i{
color: red !important
}