set img src in css code example
Example 1: change img src css
// You cannot do it with CSS alone
// You can with JS
element.style.src = "someImage.jpg";
// Or with jQuery
$('some-element').attr('src', 'someImage.jpg');
Example 2: html css img src
img src problem