顺风 CSS :在伪 class 之前
Tailwind CSS :before pseudo class
我现在一直在努力了解正在发生的事情。我正在使用带有 Tailwind 的故事书制作设计库。我似乎无法让 :before pseudo class 工作。无论我将它放在样式中的什么位置,它都不会被渲染。
一个例子是我正在尝试制作一个使用 react-slick 的组件,并且想要设置导航样式:
'& .slick-dots': {
bottom: -30,
display: 'block',
left: 4,
listStyle: 'none',
margin: 0,
padding: 0,
position: 'absolute',
textAlign: 'center',
width: '100%',
'& li': {
cursor: 'pointer',
display: 'inline-block',
height: 20,
margin: '0 5px',
padding: 0,
position: 'relative',
width: 20,
'& button': {
border: 0,
background: 'transparent',
display: 'block',
height: 20,
width: 20,
outline: 'none',
lineHeight: 0,
fontSize: 0,
color: 'transparent',
padding: 5,
cursor: 'pointer',
'&:before': {
position: 'absolute',
top: 0,
left: 0,
content: '',
width: 20,
height: 20,
fontFamily: 'sans-serif',
fontSize: 20,
lineHeight: 20,
textAlign: 'center',
color: '#000000',
opacity: 0.75,
display: 'inline-block',
},
},
},
},
找到问题了。 :before pseudo class 除非有内容,否则不会呈现,但在 js 中 css 的情况下,内容需要看起来像这样 content: '"text"',
而不是 content: 'text',
要让 :before class 工作,您必须使用 tailwindcss-pseudo-elements 包来自定义您的伪元素。查看下面的文档
我现在一直在努力了解正在发生的事情。我正在使用带有 Tailwind 的故事书制作设计库。我似乎无法让 :before pseudo class 工作。无论我将它放在样式中的什么位置,它都不会被渲染。
一个例子是我正在尝试制作一个使用 react-slick 的组件,并且想要设置导航样式:
'& .slick-dots': {
bottom: -30,
display: 'block',
left: 4,
listStyle: 'none',
margin: 0,
padding: 0,
position: 'absolute',
textAlign: 'center',
width: '100%',
'& li': {
cursor: 'pointer',
display: 'inline-block',
height: 20,
margin: '0 5px',
padding: 0,
position: 'relative',
width: 20,
'& button': {
border: 0,
background: 'transparent',
display: 'block',
height: 20,
width: 20,
outline: 'none',
lineHeight: 0,
fontSize: 0,
color: 'transparent',
padding: 5,
cursor: 'pointer',
'&:before': {
position: 'absolute',
top: 0,
left: 0,
content: '',
width: 20,
height: 20,
fontFamily: 'sans-serif',
fontSize: 20,
lineHeight: 20,
textAlign: 'center',
color: '#000000',
opacity: 0.75,
display: 'inline-block',
},
},
},
},
找到问题了。 :before pseudo class 除非有内容,否则不会呈现,但在 js 中 css 的情况下,内容需要看起来像这样 content: '"text"',
而不是 content: 'text',
要让 :before class 工作,您必须使用 tailwindcss-pseudo-elements 包来自定义您的伪元素。查看下面的文档