Answer the question
In order to leave comments, you need to log in
What does the code: .\31 u\24 mean?
What does the code: .\31 u\24 mean? And how is it created?
Compiled via SASS, if so, how?
Answer the question
In order to leave comments, you need to log in
This is simple escaping, escaping special characters. or invalid characters.
In CSS, a class can only start with the characters "az, _, -"
But in html, you can write anything.
So you can do this
.\31 {}
.\@md-3
<div class="31"></div>
<div class="@md-3"></div>
This is unicode.
i.e.
More details here https://mathiasbynens.be/notes/css-escapes
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question