CSS attr()

by robnyman

HTML

<span data-hello="Hello">world</span>

CSS

span:before {
    content: attr(data-hello) " ";   
}