I am just learning Angular.Actually I am trying to centralized text using Flex.I tried and the text also centralized but the problem was it is not look like professional.Can you please help me with this.I want like:
Account Name Dev
Region North Virginia
User Name Ramya
I tried and it looks like:
Account Name Dev
Region North Virginia
User Name Ramya
CSS I tried:
<div style="flex: 1">
<div style="display: flex;flex-direction:row;justify-content:center;">
<span>Account</span>
<span>{{' ' + recoveryaccount}}</span>
</div>
<div style="display: flex;flex-direction:row;justify-content:center;">
<span>Region</span>
<span>{{' '}}{{selectedrestorepoint?.instances?.length ? (selectedrestorepoint.instances[0].aws_region | region) : ' '}}</span>
</div>
</div>
I want the above format.Can you please help with this.Seriouly I am struggling. Thanks in advance :)