【发布时间】:2018-05-17 15:41:21
【问题描述】:
请参考下面的截图,我需要将手风琴标题的字体更改为白色。该代码在“小提琴”中运行良好,但是当我将 CSS sn-p 嵌入到 SharePoint 2013 页面时,字体颜色未正确呈现。
.accordionTitle,
.accordion__Heading {
background-color: #00008B;
text-align: center;
font-weight: 700;
padding: 2em;
display: block;
text-decoration: none;
color:white;
-webkit-transition: background-color 0.5s ease-in-out;
transition: background-color 0.5s ease-in-out;
border-bottom: 1px solid #8000000;
}
【问题讨论】:
-
您的开发工具屏幕截图已经显示了覆盖颜色的规则...
-
你可以使用
color: white !important
标签: css