Angular defines some css classes like ng-hide and more. How and where it does it? in angular.js I've a possible definition:
 * ### Overriding .ng-hide
 *
 * By default, the `.ng-hide` class will style the element with `display:none!important`. If you wish to change
 * the hide behavior with ngShow/ngHide then this can be achieved by restating the styles for the `.ng-hide`
 * class in CSS:
 *
 * ```css
 * .ng-hide {
 *   /* this is just another form of hiding an element */
 *   display:block!important;
 *   position:absolute;
 *   top:-9999px;
 *   left:-9999px;
 * }
 * ```
If it's really the definition, what's that ```css syntax? Found nothing about it.
 
     
    