The CSS content property is very useful for generated content in the ::before or ::after speudo-elements. To insert a new line / line break in that content, use the \A escape characters:
article h2::before {
content: "Killing \A Me \A Softly";
white-space: pre-wrap;
}
In order for the new lines to work properly, you also need to set the white-space property to either pre or pre-wrap.
Join our DigitalOcean community of over a million developers for free! Get help and share knowledge in our Questions & Answers section, find tutorials and tools that will help you grow as a developer and scale your project or business, and subscribe to topics of interest.
Sign up