我开始知道我们不能为 css 生成的图像设置 alt。有一些解决方案说,通过标题属性,我们只能在图像上悬停时获得 alt 效果,但是当我们禁用 css 时,我们将无法看到该文本代替图像。在我的情况下,即使禁用 css,我也需要显示文本。是否有任何解决方法可以在 css 被禁用时使文本可见。
<span class="myimageclass">
hi
</span>
<style>
.myimageclass
{
height: 100px;
width: 200px;
background-image:url('http://cdn.osxdaily.com/wp-
content/uploads/2011/10/NSTexturedFullScreenBackgroundColor.png');
color:red;
overflow: hidden;
text-indent: -9999px;
}
</style>
谢谢,巴拉吉。