一、关于轮播高度问题

image.png
给最外面div和img高度

  1. <nz-carousel nzAutoPlay class="item">
  2. <div nz-carousel-content *ngFor="let item of array">
  3. <img [src]="item" alt="" class="top-img">
  4. </div>
  5. </nz-carousel>
  1. .item {
  2. height: 210px;
  3. }
  4. .top-img {
  5. width: 100%;
  6. height: 210px;
  7. }