I have found two small bugs in the CSS Tidy feature.
1. In @charset "UTF-8"; it removes the space after charset (@charset"UTF-8"

2. In a Media Query such as,
@media screen and (min-width: 480px) {
}
It removes the space between and, and before (, so it does not validate and does not work correctly in some browsers.
@media screen and(min-width: 480px) {
}
My site: http://www.williamcodywinter.com