我有使用数据描述在页面上显示文本的 CSS。
代码:
CSS
#nav a:after {
text-align:center;
content: attr(data-description);
display: block;
}
HTML
<li><a data-description="The Thinking Man,The Artist, The Philosopher" href="#">The Renaissance Man</a></li>
我遇到的麻烦,我想做的是让句子的每个部分都在线。换句话说
The Thinking Man
The Artist
The Philosopher
但是当我插入 a 时<br />
,它不会创建中断,它只会显示<br />
在代码中。如何使用以下代码在数据描述中创建换行符?