CSS attr()
HTML
<span data-hello="Hello">world</span>
<span the-color="red">Wow</span>
CSS
span:before {
content: attr(data-hello) " ";
}
span {
color: attr(the-color);
}
<span data-hello="Hello">world</span>
<span the-color="red">Wow</span>
span:before {
content: attr(data-hello) " ";
}
span {
color: attr(the-color);
}