我正在使用以下css
添加图片{
background-image: url(../images/icon_new_reset.png);
background-repeat: no-repeat;
}
然后,如何在background image
上提供替代文字或添加文字。
答案 0 :(得分:0)
如果您使用textarea
,则无法使用css
但如果你使用div
或......你可以使用以下方法添加文字:
<div class="testDiv"></div>
你的风格是这样的:
.testDiv:after{
content: "your text";
}
顺便说一下,最好使用javascript
或jquery
来更改值或文字。