我使用CommandBar组件来显示链接。(按钮是href链接)。我想在悬停时删除按钮上的下划线。有可能吗?enter image description here
https://developer.microsoft.com/en-us/fluentui#/controls/web/commandbar
发布于 2021-04-28 22:00:06
如果你想在鼠标悬停时移除按钮的下划线,你可以这样做
button: hover{
text-decoration: none;
}如果这对你有效,请告诉我
https://stackoverflow.com/questions/67301604
复制相似问题