大螃嗨

好记性不如烂笔头

用户工具

站点工具


伪元素
const styles = (theme) => ({
  root: {
    fontFamily: theme.fontFamily,
    width: '100%',
    marginTop: 80,
    marginLeft: 90,
  },
  item: {
    display: 'block',
    float: 'left',
    height: 50,
    backgroundColor: '#e8f5e9',
    padding: '30px 40px 0px 40px',
    margin: '0px 10px 0px 0px',
    textAlign: 'center',
    position: 'relative',
    fontSize: 20,
    color: '#4caf50',
    textDecoration: 'none',
    '&:after': {
      content: '""',
      borderTop: '40px solid red',
      borderBottom: '40px solid red',
      borderLeft: '40px solid blue',
      position: 'absolute',
      right: -40,
      top: 0,
    },
  },
});

content: '“”'

上面这条是重点,如果写成content: ''就不会生效,或者这样写也行content: `{xxx}`

伪元素.txt · 最后更改: 2020/01/02 02:44 由 螃蟹