gpt4 book ai didi

html - 如何在 Angular Material 步进器中用 mat-chip 替换下一个按钮?

转载 作者:太空宇宙 更新时间:2023-11-04 06:19:25 26 4
gpt4 key购买 nike

我正在使用 Angular 形 Material 步进器,在步进器中我想用 mat-chip 替换下一个按钮并充当与下一个按钮相同的功能。 Here is angular stepper stackblitz example

这就是我想要的:

This is i want

最佳答案

如果您只是想让按钮看起来像一个 Material 芯片(而不是实际上是一个 Material 芯片),您可以从下一个按钮中删除“mat-button”并添加您自己的类,例如'下一个按钮':

<button class="next_btn" matStepperNext>Next</button>

然后您可以只设置按钮的样式,使其看起来像一个筹码:

button.next_btn {
padding: 7px 12px;
border-radius: 16px;
min-height: 32px;
background-color: #e0e0e0;
color: rgba(0,0,0,.87);
box-shadow:none;
border:none;
cursor: pointer;
outline:none;
}

button.next_btn:focus
{
outline:none;
}

示例 here .

关于html - 如何在 Angular Material 步进器中用 mat-chip 替换下一个按钮?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/55634592/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com