Issue:
I'm facing a problem with my image slider where I am unable to occupy the full width and height (100%) of the drosp and abc classes.
Inquiry:
How can I ensure that all images fill their entire space without compromising on quality?
code
<div class="col-md-6" style="overflow-y: auto;">
<div class="drosp">
<div class="c">
<ng-template>
<ngb-carousel id="carousel" #carouse *ngIf="imagens" >
<ng-template *ngFor="let imgIdx of imagens; let i = index" [id]="i" ngbSlide>
<div class="picsum-img-wrapper">
<img [src]="imgIdx.Imagem" class="img-responsive">
</div>
</ng-template>
</ngb-carousel>
</ng-template>
</div>
</div>