1. ホーム
  2. reactjs

MUIによるCSS疑似セレクタ

2023-10-08 03:30:46

質問

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);

どのように解決するのですか?

content属性は、次のように二重引用符で囲む必要があることがわかりました。

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

そして、すべてが期待通りに動作しました。