I want to style a \newline using css only-- in my text I have entries like this:
"Hello, this is the text and \nthere's more text hereasdf adf \nmore text here"
which should render like this:
Hello, this is the text and
there's more text here asdf adf
more text here
How do I change the styling of the escaped \newline using css (i.e. make the height 20px)? Can I do that since the \n isn't an html element?
Not the same as Line break in html with `\n` because I don't have a problem getting the \n in my document. I just want to change how it's displayed.
tag – Venkat smart Jul 01 '19 at 15:55