我在很多MUI代码中看到他们在其react样式的组件中使用伪选择器。我想我会尝试自己做,但我无法让它工作。我不确定我做错了什么,或者这是否可能。
我正在尝试做一些CSS,将抵消这个元素对固定的标题。
import React from 'react';
import { createStyles, WithStyles, withStyles, Typography } from '@material-ui/core';
import { TypographyProps } from '@material-ui/core/Typography';
import GithubSlugger from 'github-slugger';
import Link from './link';
const styles = () =>
createStyles({
h: {
'&::before': {
content: 'some content',
display: 'block',
height: 60,
marginTop: -60
}
}
});
interface Props extends WithStyles<typeof styles>, TypographyProps {
children: string;
}
const AutolinkHeader = ({ classes, children, variant }: Props) => {
// I have to call new slugger here otherwise on a re-render it will append a 1
const slug = new GithubSlugger().slug(children);
return (
<Link to={`#${slug}`}>
<Typography classes={{ root: classes.h }} id={slug} variant={variant} children={children} />
</Link>
);
};
export default withStyles(styles)(AutolinkHeader);
3条答案
按热度按时间acruukt91#
我发现content属性需要像这样用双引号引起来
然后一切都像预期的那样
kmpatx3s2#
正如@Eran Goldin所说,检查
content
属性的值,确保它被设置为字符串""
。在输出样式表中根本不设置
content
属性在Material-UI样式对象中,字符串的内容是css值,* 包括 * 双引号,要修复它只需编写
p8h8hvxi3#
无需显式设置高度
上面的解决方案需要显式的高度。如果您希望高度是动态的,可以执行以下操作: