伪类选择器
悬停、聚焦及其他伪选择器。
开箱即用,Reflexjs 为悬停和聚焦样式提供了两个属性。
悬停
要添加悬停样式,请使用_hover
样式属性。
<buttonbg="primary"_hover={{bg: "secondary",boxShadow: "xl",}}/>
聚焦
要添加悬停样式,请使用_focus
样式属性。
<buttonbg="primary"_focus={{borderColor: "accent",}}/>
其他伪属性
你可以通过sx
属性使用其他伪选择器,例如:before
、:nth-child
或:active
。
<button sx={{":before": {content: '""',}}}></button