我正在使用 Angular 6 mat-horizontal-stepper。我想给它一些特定的宽度,并希望将它保持在页面的中心。对于 mat-horizontal-content-container 我可以将其保持在中心
.mat-horizontal-content-container
text-align: center;
overflow: hidden;
padding: 0;
但是如何将标题保持在页面中心。我正在尝试这个,但它不起作用。
.mat-stepper-label-position-bottom .mat-horizontal-stepper-header-container
width: fit-content !important;
align-items: center;
谁能帮我解决这个问题。