You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Line number in parse error message excludes comment lines and new lines
/* test */div {
color: red;
cfont-weight: bold;
}
Actual error message: Please check the validity of the CSS block starting from the line #2
Expected Please check the validity of the CSS block starting from the line #4
In huge file one can not simply vi +3 index.css and find the source of problem...
Error message could be more informative
It should include full css block with error, and line numbers
Please check the validity of the CSS block starting from the line #4
2 | div {
3 | color: red;
> 4 | c
5 | font-weight: bold;
6 | }