gpt4 book ai didi

css - :hover and :focus inline style in React doesn't work

转载 作者:行者123 更新时间:2023-12-03 08:44:54 27 4
gpt4 key购买 nike

我正在尝试创建一个 const 对象,它应该是一个具有 React 内联样式的按钮,但是 :hover:focus 不起作用。如何在 React 中实现悬停和焦点?

感谢任何帮助!提前致谢。

const Button= {
background: '#AC003B',
color: '#fff',
borderColor: '#AC003B',
&:hover, &:focus {
background: '#707070',
borderColor: '#707070'
}
}

最佳答案

我相信你想做的是:

const Button = {
background: '#AC003B',
color: '#fff',
borderColor: '#AC003B',
'&:hover, &:focus': {
background: '#707070',
borderColor: '#707070'
}
}

关于css - :hover and :focus inline style in React doesn't work,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/61872517/

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