What does this line do? Technology Community › Category: Angular › What does this line do? 0 Vote Up Vote Down VietMX Staff asked 4 years ago Problem @HostBinding('[class.valid]') isValid; @HostBinding lets you set properties on the element or component that hosts the directive. The code applies the css class valid to whatever is using this directive conditionally based on the value of isValid.