i need my ng content and text to align to center this is the current situation:
<div
(mouseenter)="mouseEnter()"
(mouseleave)="mouseLeave()"
style="text-align: center"
>
<ng-content></ng-content>
</div>
<span style="text-align: center" *ngIf="isTitleVisable">
{{ title }}
</span>
<div *ngIf="!isTitleVisable"><br /></div>
i want the ng content to stay in place exactly like the 2nd pic but when the text mouse exit the ng-content,the text disapear (as it should) and the content goes left.