命令栏按钮悬停

CommandBar Buttons Hover

我正在使用 CommandBar 组件来显示链接。 (按钮是 href 链接)。 我想在悬停时从按钮中删除下划线。可能吗? enter image description here

https://developer.microsoft.com/en-us/fluentui#/controls/web/commandbar

如果你想在悬停时删除按钮的下划线,也许你可以这样做

button: hover{
text-decoration: none;
}

让我知道这是否适合你