Using Css only we need to control the block/inline element.
Example:
<style>
.ng-component{ display:block; } // all my components will be block by default.
....
my-inline-component.ng-component{ display:inline-block; } // this one will be in-line.. etc...
</style>
See for more discussion: https://github.com/angular/angular/issues/5960