2017-04-09 33 views
0

我想更改頁面younow的聊天窗口fontcolor/fontsize。我可以更改字體大小,但我無法更改字體顏色。 如何更改聊天窗口的字體顏色? enter image description here這是我使用的是什麼:使用setattribute更改字體顏色(聊天中)

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

您應該'cssText'爲...'的document.getElementById( 「chatcomments」)style.cssText =「字體大小:36px;顏色:紅色;'' – LGSon

+0

'chatcomments'不是文本的直接元素,下面是一個範圍,所以如果你嘗試這個'document.querySelector(「。chatcomments span」)。style.cssText ='font- size:36px;顏色:紅色;'' – LGSon

回答

0

我參觀了鏈接,並解決您的問題。這個CSS代碼可以解決這個問題。不需要JavaScript。

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

 
}