Answers for "modify image url css"

CSS
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');
Posted by: Guest on April-03-2020
0

change image link css

.element {
   background-image: url('./path/to/your/image.jpg');
}
Posted by: Guest on June-03-2021

Browse Popular Code Answers by Language