使用setattribute更改字体颜色(在聊天中)

时间:2017-04-09 00:01:58

标签: html setattribute

我想更改页面younow的聊天窗口fontcolor / fontsize。我能够更改字体大小,但我无法更改字体颜色。 如何更改聊天窗口的字体颜色?enter image description here这就是我正在使用的内容:

document.getElementById("chatcomments").setAttribute('style','font-size:36px; color:red !important;');

1 个答案:

答案 0 :(得分:0)

我访问了该链接并解决了您的问题。这个css代码可以解决这个问题。不需要javascript。



.comment-content{
     font-size: 20px;
 }
 .comment-content a,
 .comment-content span,
 .comment-content i{
     color: red !important

 }