Home > Article > Web Front-end > How to Display Multiline Data Attribute Content with New Lines using CSS?
In CSS, it's possible to retrieve values from data attributes using the attr() function and display them as content using pseudo-elements. However, incorporating new lines within these data attributes can be challenging.
Consider the following code example:
[data-foo]:after { content: attr(data-foo); background-color: black; }
<div data-foo="First line \a Second Line">foo</div>
Despite using the "a" escape sequence, which represents a new line character in CSS, the content within the data-foo attribute remains on a single line.
To enable multiline data attributes, modify the syntax as follows:
[data-foo]:after { content: attr(data-foo); background-color: black; color: white; white-space: pre; display: inline-block; }
<div data-foo='First line &#xa; Second Line'>foo</div>
In this modified version:
The above is the detailed content of How to Display Multiline Data Attribute Content with New Lines using CSS?. For more information, please follow other related articles on the PHP Chinese website!