更改标题元素内的颜色不能正常工作

时间:2016-12-09 14:53:51

标签: html css header

我正在使用Wordpress,我希望在元素中显示包含部分文本的元素,以显示为不同的颜色。我相信我的语法正确,在Wordpress可视化编辑器中它看起来很好。但是当我预览页面时,浅蓝色的字体看起来更小(基本上它丢失了一些格式)。我想知道是什么让这种情况发生。

这就是我所拥有的:

<h3 style="text-align: center;">ABOUT <span style="color: #359ed3;">MY BUSINESS</span></h3>

1 个答案:

答案 0 :(得分:0)

也许你可以尝试添加!important;,这使其成为强制性的:

<h3 style="text-align: center; font-size: 16px !important;">ABOUT <span style="color: #359ed3 !important;">MY BUSINESS</span></h3>

注意:如果您已经用尽其他所有内容,则应该只使用它:https://www.smashingmagazine.com/2010/11/the-important-css-declaration-how-and-when-to-use-it/