最佳答案
我试图使用一个 :before
伪元素和一个 img
元素。
考虑这个 HTML 和 CSS..。
<img src="http://0.gravatar.com/avatar/this-is-not-a-hash" alt="" />
img:before {
content: "hello";
}
JsFiddle .
这并没有产生预期的效果(在 Chrome13和 Firefox6中测试过)。但是,它适用于 div
或 span
元素。
为什么不呢?
有没有办法使伪元素与 img
元素一起工作?