Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

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" />

also, i don't want to use the background or background-image: property.

share|improve this question
1  
This is apparently going to be possible in CSS3: w3.org/TR/css3-values/#attribute – graphicdivine Feb 2 '10 at 11:53
3  
It is now possible. Tested on Chrome / Safari / Opera: stackoverflow.com/a/11484688/632951 – Pacerier Jul 14 '12 at 14:52
1  
Pacerier's working code works fine for me. Thanks – Easwaramoorthy Kanagaraj Sep 4 '12 at 6:25

16 Answers

up vote 10 down vote accepted

No you can't set the image src attribute via CSS. The closest you can get is, as you say, background or background-image. I wouldn't recommend doing that anyway as it would be somewhat illogical.

share|improve this answer
79  
For all the people who just read THIS answer and are about to close the browser tab: For god's sake, SCROLL DOWN, there are a lot of working answers to this beautiful question that do EXACTLY what you are searching for. – Panique Nov 27 '12 at 20:12
4  
Agreed, there is a good CSS3 solution provided by @Pacerier content:url("image.jpg") – udjamaflip Dec 19 '12 at 0:53
8  
Yes but this answer was given 3 years ago! – Jonur Jan 29 at 13:04

Use content:url("image.jpg").

Full working example:

<!doctype html>
<style>
.MyClass123{
    content:url("http://imgur.com/SZ8Cm.jpg");
}
</style>
<img class="MyClass123"/>
share|improve this answer
3  
Great ! Kudos Pacerier.. Thanks – Easwaramoorthy Kanagaraj Sep 4 '12 at 6:24
4  
Not working in IE10. – gotqn Jan 10 at 12:22
4  
@gotqn, only Chrome Safari Opera so far. – Pacerier Jan 10 at 13:39
2  
not browser compatible at all, I wonder why this satisfies people. (its simplicity I guess, I should ask why people dont care/think about compatibility all of a sudden) – EricG Feb 22 at 9:32
4  
@EricG, different applications have different requirements. If it doesn't suit your requirements, don't use it. If it does, use it. – Pacerier Feb 22 at 12:17
show 6 more comments

There is a solution that I found out today (works in IE6+, FF, Opera, Chrome):

<img src='willbehidden.png' style="width:0px; height:0px; padding: 8px; background: url(newimage.png);">

How it works:

  • The image is shrunk until no longer visible by the width & height.
  • Then, you need to 'reset' the image size; there I use padding (this one gives a 16x16 image, of course you can use padding-left / padding-top to make rectangular images)
  • Finally, the new image is put there using background

It also works for submit-input-images, they stay clickable.

See live demo: http://www.audenaerde.org/csstricks.html#imagereplacecss

Enjoy!

share|improve this answer
5  
@RobAnu: This works quite well - jsfiddle – TimPietrusky May 29 '12 at 9:26
Got to hand it to you that this is fascinating and clever, but an empty DIV is more straight-forward. – Volomike Jul 10 '12 at 22:46
5  
In this case it is. There are cases however, where you cannot control the HTML and want to manipulate the IMG nonetheless. There this solution will also work – RobAu Jul 11 '12 at 9:41

They are right. IMG is a content element and CSS is about design. But, how about when you use some content elements or properties for design purposes? I have IMG across my web pages that must change if i change the style (the CSS).

Well this is a solution for defining IMG presentation (no really the image) in CSS style.

  1. create a 1x1 transparent gif or png.
  2. Assign propery "src" of IMG to that image.
  3. Define final presentation with "background-image" in the CSS style.

It works like a charm :)

share|improve this answer
4  
-1 Even though your answer isn't bad, he specifically mentions that he doesn't want to use background* – x3ro Aug 11 '11 at 22:17
1  
I like new ideas =) – Pacerier Jul 14 '12 at 15:13

i used the empty div solution, with this CSS:

#throbber {
    background-image: url(/Content/pictures/ajax-loader.gif);
    background-repeat: no-repeat;
    width: 48px;
    height: 48px;
    min-width: 48px;
    min-height: 48px;
}

HTML:

<div id="throbber"></div>
share|improve this answer

I found a better way than the proposed solutions, but it does use the background-image indeed. Compliant method (cannot confirm for IE6) Credits: http://www.kryogenix.org/code/browser/lir/

<img src="pathTo/myImage.jpg"/>

The CSS:

img[src*="pathTo/myImage.jpg"] {

    background-image: url("mynewimg.jpg"); /* lets say 20x20 */
    width: 20px;

    display:inline-block;
    padding: 20px 0 0 0;
    height: 0px !important;

    /* for IE 5.5's bad box model */
    height /**/:20px;
}

The old image is not seen and the new is seen as expected.


The following neat solution only works for webkit

img[src*="pathTo/myImage.jpg"] {

    /* note :) */
    content:'';
    display:inline-block;

    width: 20px;
    height: 20px;
    background-image: url("mynewimg.jpg"); /* lets say 20x20 */

}
share|improve this answer
This is a neat trick, but is it really standards compliant? The W3C page says the content property only applies to the :before and :after pseudo classes. Also, if you have to support IE7 or earlier, I think content support is non-existent. Still, very tempting. – jatrim Jun 1 '12 at 18:15
You are right, I just found a more compliant method. Updating my post! Now vote me up ;) Haha. – EricG Jun 4 '12 at 8:38
The updated approach is definitely better than the one relying on content. Thanks for including the original link. That was insightful. You'll note that @RobAu's answer is actually very similar to your updated version as well. – jatrim Jun 4 '12 at 15:39
@jatrim The content property applies to all elements. http://www.w3.org/TR/css3-content/#content – XP1 May 2 at 16:32

As far as I am aware of, YOU CANNOT. CSS is about style and image's src is content.

share|improve this answer
2  
Nowadays, quite often images are there just to style up the page. – Lorenzo Polidori Aug 8 '12 at 9:34

If you don't want to set a background property then you can't set the src attribute of an image using only CSS.

Alternatively you can use JavaScript to do such a thing.

share|improve this answer

Using CSS, it can't be done. But, if you are using JQuery, something like this will do the trick:

$("img.myClass").attr("src", "http://somwhere");
share|improve this answer

No, if you don't want ot use the backgroundproperty trick, you can't. You'll have to use JavaScript for instance to change the image.

share|improve this answer

alternative way

.myClass {

background: url('/img/loading_big.gif');

}

< div class="myClass">< /div>

share|improve this answer

If you are trying to add an image in a button dynamically based on the context of your project, you can use the ? take to reference the source based on an outcome. Here I am using mvvm design to let my Model.Phases[0] value determine whether I want my button to be populated with images of a lightbulb on or off based on the value of the light phase.

Not sure if this helps. I'm using JqueryUI, Blueprint, and CSS. The class definition should allow you to style the button based on whatever you'd like.

    <button>                           
  <img class="@(Model.Phases[0] ? "light-on": "light-off")" src="@(Model.Phases[0] ? "~/Images/LightBulbOn.png" : "~/Images/LightBulbOff.png")"/>                             
  <img class="@(Model.Phases[0] ? "light-on": "light-off")" src="@(Model.Phases[0] ? "~/Images/LightBulbOn.png" : "~/Images/LightBulbOff.png")"/>   
  <img class="@(Model.Phases[0] ? "light-on": "light-off")" src="@(Model.Phases[0] ? "~/Images/LightBulbOn.png" : "~/Images/LightBulbOff.png")"/>     

share|improve this answer

To reiterate a prior solution and to stress the pure CSS implementation here is my answer.

A Pure CSS solution is needed in cases where you are sourcing content from another site, and thus you have no control over the HTML that is delivered. In my case I am trying to remove branding of licensed source content so that the licencee does not have to advertise for the company they are buying the content from. Therefore, I'm removing their logo while keeping everything else. I should note that this is within my client's contract to do so.

{ /* image size is 204x30 */
     width:0;
     height:0;
     padding-left:102px;
     padding-right:102px;
     padding-top:15px;
     padding-bottom:15px;
     background-image:url(http://sthstest/Style%20Library/StThomas/images/rhn_nav_logo2.gif);
}
share|improve this answer

I would add this: background image could be also positioned with background-position: x y; (x horizontal y vertical). (..) My case, CSS:

(..) 
#header {
  height: 100px; 
  background-image: url(http://.../head6.jpg); 
  background-position: center; 
  background-repeat: no-repeat; 
  background-color: grey; 
  (..)
} 
(...)
share|improve this answer

You can define 2 images in your HTML code and use display: none; to decide which one will be visible.

share|improve this answer

Here is a modified code from cssround.com using images for rounded corners, but the script provided uses div's and img ...I wanted to replace the img part with css class.

using the 'content' suggestion from above for img, I was able to get my desired result - which was to remove the img as content in html and move it to css file.

<html>
<head>
<style type="text/css"> 
#sidebar-menu {background: #E6EBF2;padding: 0px;font-size: 1.3em;}
#sidebar-menu .topplace{ background: url(../images/corners/blue-right.png) no-repeat top right; }
#sidebar-menu .bottomplace { background: url(../images/corners/blue-right-bottom.png) no-repeat top right; }
#sidebar-menu .topplaceleft{ content: url(../images/corners/blue-left.png) no-repeat top right; }
#sidebar-menu .bottomplaceleft { content: url(../images/corners/blue-left-bottom.png) no-repeat top right; }
#sidebar-menu img.placeborder { width: 17px; height: 17px;border: none;display: block !important; }
</style>
</head>
<body>
    <div id="sidebar-menu">
        <div class="topplace"><img class="topplaceleft placeborder" style="display: none" /></div>

<li> menu one</li>
<li> menu two</li>

        <div class="bottomplace"><img class="bottomplaceleft placeborder" style="display: none" /></div>
    </div>
</body></html>
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.