如何使用CSS更改标签?

时间:2015-02-14 18:08:05

标签: html css

我正在尝试更改HTML标签的内容,但我没有能力编辑HTML。因此,我试图使用CSS更改文本。是否有任何选择器来识别下面的标签,如果有,我怎么能让文字显示单词" Organization"而不是"公司"?谢谢。

<div class="control-group">
<label class="control-label" for="company" style="">Company</label>
<div class="controls">
<input id="settings-company" class="settings-company input-xlarge" type="text" data-config="required" value="My Organization" name="company">
</div>
</div>

1 个答案:

答案 0 :(得分:12)

使用font-size:0;隐藏文字并添加伪元素。

label { font-size: 0; }
label:before { content: "Organization"; font-size: 14px; }