我在我的孩子網站遇到問題。我調整了網站上的大部分內容,但後來我意識到頁面之間的字體系列和重量不同。目前,我正在通過一個css插件覆蓋CSS,它很好,直到面臨這個問題。在不同的頁面中有不同的字體重量/類型
這是字體的CSS代碼;
@import url(http://fonts.googleapis.com/css?family=Open+Sans);
*{font-family:"Open Sans" !important;
font-weight: 100;
color: rgba(0, 0, 0, 0.50);
font-size: 18px;
}
p{
color: rgba(0, 0, 0, 0.50) !important;
font-weight: 100 !important;
}
strong{
color: #1a9396 !important;
font-weight: 300 !important;
}
h1, h2, h3, h4, h5{
color: #1a9396 !important;
font-weight: 100 !important;
}
非常感謝你,你發現問題出在哪裏。我爲其他導致400字體重量的橫幅所做的工作是將文本置於100,並使其不可見。問題解決了。謝謝你的哥們。 –