Passing a new-line from HTML attribute to CSS content through attr()
Given an HTML attribute, location-id, whose value is three unicode characters: .loc::before { content: attr(location-id) } <span class="loc" location-id="▶ ▶"></span> the three unicode characters are displayed as intended: two ▶ characters separated by a space. How, if it is possible, do…