在this page,我想在包含“ADSL Broadband 1”的灰色框上方添加一些文字。
我尝试过使用以下CSS规则,但它无效:
.vc_tta-panels #adsl .vc_tta-panel-body:before {
content: 'text goes here';
}
你能看到这里有什么问题吗?
答案 0 :(得分:1)
您的其他规则会覆盖此规则,您应添加display属性,例如:
.vc_tta-panels #adsl .vc_tta-panel-body:before {
content: 'text goes here';
display: inline;
}
答案 1 :(得分:1)