CSS pseudo selectors with Material UI
Asked Answered
F

3

95

I have seen in a lot of the Material UI code that they use pseudo selectors in their react styled components. I thought I would try to do it myself and I cannot get it to work. I'm not sure what I am doing wrong or if this is even possible.

I am trying to make some CSS that will offset this element against the fixed header.

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);
Farci answered 13/12, 2018 at 18:44 Comment(0)
F
246

I found out that the content attribute needed to be double quoted like this

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

and then everything worked like expected

Farci answered 14/12, 2018 at 1:28 Comment(5)
content: ' "some content" ', you missed the closed quote but anyway thanks, you saved my day. – Clea
This is also important for empty pseudo-elements. i.e. content: '""' – Joseph
wasted 2 hours on that. I was using content: 'blabla' and it was not working πŸ€¦β€β™‚οΈ – Kalat
Well, content wasted my time. – Vaughn
Also wasted a few hours on this. My situation was even shittier as eslint is quite strict on this project I am working on and we're not allowing single quotes. For those in the same boat, just add this line before the content property: /* eslint quotes: [2, "double", "avoid-escape"] */ as this would allow strings to use single or double quotes as long as the string contains a quote that would have to be escaped otherwise. – Largescale
L
53

As @Eran Goldin said, check the value of your content property and make sure it's set to a string "". Odds are, you are doing something like this:

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

Which doesn't set the content property at all in the output stylesheet

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

In Material-UI style object, the content of the string is the css value, including the double quote, to fix it simply write

'&::before': {
  content: '""', // "''" will also work.
  ...
}
Lipp answered 17/2, 2021 at 0:0 Comment(0)
R
0

Without having to explicitly set a height

The above solutions require explicit height. If you want height to be dynamic, you can do something like this:

  &::after {
    content: '_'; // Any character can go here
    visibility: hidden;
  }
Rectifier answered 2/11, 2022 at 16:21 Comment(0)

© 2022 - 2024 β€” McMap. All rights reserved.