0

I wanted to confirm if \a and \A are both the same CSS new line character, and that being capital letter or small letter doesn't matter here?

Like for example these are the same:
#content1::after{
    content: "\a";
    white-space: pre;
}
#content1::after{
    content: "\A";
    white-space: pre;
}

Thank you

1 Answers1

1

Might Yes, these characters represent the generic notion of "newline" in CSS

prince yadav
  • 219
  • 1
  • 5