gpt4 book ai didi

reactjs - Material-UI 中带有样式的伪选择器未渲染到页面

转载 作者:行者123 更新时间:2023-12-03 13:40:13 25 4
gpt4 key购买 nike

这确实很奇怪。我需要向一个元素添加 2 个伪选择器:::before::after::before 正在渲染到页面,但 ::after 则没有。但语法是一样的。

const styles = {
Typography: {
overflow: 'hidden',
position: 'relative',
lineHeight: '1.2em',
height: '3.6em',
textAlign: 'justify',
marginRight: '-1em',
paddingRight: '1em',
'&:after': {
content: 'test',
position: 'absolute',
right: 0,
width: '1em',
height: '1em',
marginTop: '0.2em',
backgroundColor: 'white'
},
'&:before': {
content: "'...'",
position: 'absolute',
right: 0,
bottom: 0,
}
}
}

这是它所应用到的元素:

<Typography component="p" className={classes.Typography}> 
{incident.incident_description}
</Typography>

最佳答案

内容的值需要为 wrapped in quotes .

这使得它被编译为带有引号的正确 CSS 表示形式。

content: "'test'",

content: '"test"',

关于reactjs - Material-UI 中带有样式的伪选择器未渲染到页面,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/53349900/

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