'Can I obfuscate CSS class names in Django?

I'm currently using "Django Compressor" to compress HTML, JS, and CSS files.
These are the filters I use

COMPRESS_FILTERS = {
    'css': ['compressor.filters.yuglify.YUglifyCSSFilter'],
    'js': ['compressor.filters.yuglify.YUglifyJSFilter']
}

I really like the way it obfuscates my variables in js files. I don't know is it possible to obfuscate class names in CSS files too?



Solution 1:[1]

This website can obfuscate css.

The downside is the file size increases. If you want to obfuscate CSS, the file size will increase. Probably, it is the only way

Sources

This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.

Source: Stack Overflow

Solution Source
Solution 1 Tài Hatranduc