Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
CSS から画像リンクの ALT テキストを追加できますか? 以下は、画像の URL を取得するために使用している CSS です。
.reset { background-image: url(../images/icon_new_reset.png); background-repeat: no-repeat; }
CSS から画像リンクの ALT テキストを追加できますか? :いいえ
altimghtml要素の属性です。それはcssのためではありません。
alt
img
マークアップからのみ追加できます。
<img src="smiley.gif" alt="This is alt text" />