I've seen some CSS library has this code
@charset "UTF-8";
However, my website has already specified this meta tag
<meta charset="utf-8" />
I want to keep the website's meta tag.
Now, can I remove the line @charset "UTF-8";
in CSS?
Are these two identical?