I have the following issue displaying a page on Chrome and wondering if you encountered it as well.. Have you faced the following inconsistencies and how did you mitigate them?
In Chrome, one of my Nebular HTML tabs(TabB) is not left justified.
Although in TabA , using the same code, elements are left justified.
In Firefox, TabB as a completely different layout.
Also I noticed that whenever I change TabB bootstrap code let's say from col-md-4 to col-md-9, the alignment changes in Firefox but not in Chrome..I tried clearing Chrome cache and restart, still no luck.
Here is my code. Thanks in advance!!
<nb-card>
<nb-card-header>
<input nbInput id="search" class="search-input" placeholder="Search" #box (keyup)="onKey(box.value)">
</nb-card-header>
<nb-card-body>
<nb-tabset fullWidth>
<nb-tab tabTitle="TabA">
<div class="row">
<div class="col-md-4" *ngFor="let item of list_of_detail">
<nb-card status="success" *ngIf="item.env == 'A'">
<nb-card-header> {{ item.host }}</nb-card-header>
<nb-card-body>
version: {{ item.version }}
</nb-card-body>
<nb-card-footer>{{ item.service }} | {{ item.region }}</nb-card-footer>
</nb-card>
</div>
</div>
</nb-tab>
<nb-tab tabTitle="TabB">
<div class="row">
<div class="col-md-4" *ngFor="let item of list_of_detail">
<nb-card status="danger" *ngIf="item.env == 'B'">
<nb-card-header> {{ item.host }}</nb-card-header>
<nb-card-body>
version: {{ item.version }}
</nb-card-body>
<nb-card-footer>{{ item.service }} | {{ item.region }}</nb-card-footer>
</nb-card>
</div>
</div>
</nb-tab>
....
Please Verify your code is like this Now updated the code -- you can view the difference now
you must add css file
And the script is
You will get the answer like
View image In Full Screen