使用Foundation 5
<p class="reverse-text">Blahbuhblah</p>
p.reverse-text {
color: white;
}
这不起作用。我添加的其他自定义样式工作正常。尝试更改侧栏段落文本的颜色。
答案 0 :(得分:-2)
在标记
上添加css类 <style>
p.reverse-text {
color: white !important;
}
</style>
<p class="reverse-text">Blahbuhblah</p>