Skip to content

Instantly share code, notes, and snippets.

@sudarshanReddykurri
Last active September 10, 2016 06:16
Show Gist options
  • Save sudarshanReddykurri/bdcb3d94d92d8b0c10bf5de8f89c1be9 to your computer and use it in GitHub Desktop.
Save sudarshanReddykurri/bdcb3d94d92d8b0c10bf5de8f89c1be9 to your computer and use it in GitHub Desktop.
Adding Mutli line Content Using CSS & JS (Method-3)
<div id="test3">Hello World</div>
document.getElementById('test3').setAttribute('data-extra', " of baz \n food");
#test3:after {
content : attr(data-extra);
white-space: pre;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment