reactjs 带有MUI的CSS伪选择器

ercv8c1e  于 2022-11-04  发布在  React
关注(0)|答案(3)|浏览(188)

我在很多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);
acruukt9

acruukt91#

我发现content属性需要像这样用双引号引起来

const styles = () =>
  createStyles({
    h: {
      '&::before': {
        content: '"some content"',
        display: 'block',
        height: 60,
        marginTop: -60
      }
    }
  });

然后一切都像预期的那样

kmpatx3s

kmpatx3s2#

正如@Eran Goldin所说,检查content属性的值,确保它被设置为字符串""

'&::before': {
  content: '',
  ...
}

在输出样式表中根本不设置content属性

.makeStyles-content-154:before {
  content: ;
  ...
}

在Material-UI样式对象中,字符串的内容是css值,* 包括 * 双引号,要修复它只需编写

'&::before': {
  content: '""', // "''" will also work.
  ...
}
p8h8hvxi

p8h8hvxi3#

无需显式设置高度

上面的解决方案需要显式的高度。如果您希望高度是动态的,可以执行以下操作:

&::after {
    content: '_'; // Any character can go here
    visibility: hidden;
  }

相关问题