baseUI 中 styletron方法 伪类伪元素设置
作者:互联网
import { styled } from "styletron-react"; export default () => { const Button = styled("button", { color: "white", backgroundColor: "white", "::before": { content: '"…"', color: "black", display: "block", position: "absolute" } }); return <Button>xx</Button>; };
import { styled } from 'baseui'; const AvatarBoxItem = styled('div', ()=>{ return { textAlign:'center', color: '#333', ":hover": { color:'red' } } });
参考https://www.styletron.org/concepts#quotes
标签:const,伪类,color,styletron,styled,import,white,baseUI 来源: https://www.cnblogs.com/kangxinzhi/p/15184587.html