Is it possible to set the src
attribute value in CSS? At present, what I am doing is:
<img src="pathTo/myImage.jpg"/>
and I want it to be something like this
<img class="myClass"/>
.myClass {
some-src-property: url("pathTo/myImage.jpg");
I want to do this without using the background
or background-image:
properties in CSS.
Full working solution (Live Demo):
<!doctype html>
<style>
.MyClass123{
content:url("http://imgur.com/SZ8Cm.jpg");
}
</style>
<img class="MyClass123"/>
Tested and working:
Tested and Not working: