I have sort of elements with this pattern:
<div data-image="{imageurl}" ...></div>
I want to set this elements background-image
to data-image
. I test this CSS code:
div[data-image] {
border: 2px solid black;
background-image: attr(data-image url);
}
border show correctly but nothing happened for background How can do I fix this code only with css (not js or jq)?
As of writing, the browser support of
attr()
notation on CSS properties other thancontent
- likebackground-image
- is very limited.Besides, as per CSS level 2 spec, combining
url()
andattr()
is not valid:.content: url(attr(data-image));
Hence there is no cross-browser CSS solution at the moment to achieve the desired result. Unless using JavaScript is an option: