CSS内容属性中的换行符

来自菜鸟教程
跳转至:导航、​搜索

CSS content 属性对于在 ::before 或 ::after 伪元素中生成的内容非常有用。 要在该内容中插入新行/换行符,请使用 \A 转义字符:

article h2::before {
  content: "Killing \A Me \A Softly";
  white-space: pre-wrap;
}

空白属性

为了使新行正常工作,您还需要将 white-space 属性设置为 pre 或 pre-wrap。