Different sources recommend different methods for optimizing resources when creating a style sheet, but is the practice of reducing identifiers for elements common? So I understand that the interpreter still needs an identifier or a class of an element, but it would be nice to cut files by several tens of kilobytes, thereby slightly increasing the speed of loading resources from the server. For example, there is such code:
.my-class { /* style */ } <div class="my-class"></div> <div class="my-class"></div> <div class="my-class"></div> And replace it with:
.mc { /* style */ } <div class="mc"></div> <div class="mc"></div> <div class="mc"></div> How do you feel about this method? Correct in something, if not right.