STYLED COMPONENTS 2.5 _ Pseudo Selectors part Two

Eugenius1st·2022년 3월 10일
0

ReactJS_MasterClass

목록 보기
6/48

Pseudo Selectors

styled component 안의 element를 선택하는 방법2

const Box = styled.div`
  background-color: gray;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 500px;
  height: 500px;
  animation: ${rotateKeyFrames} 1s linear infinite;
  ${Emoji}:hover {
    font-size: 185px;
  }
`;

export default function App() {
  return (
    <Father>
      <Box>
        <Emoji>😍</Emoji>
      </Box>
    </Father>
  );
}

span을
위와같은 식으로 Emoji 라는 컴포넌트 이름으로 지정하여 hover 속성을 적용시킨다.


hover 되면

Emoji가 커진다.

profile
최강 프론트엔드 개발자가 되고싶은 안유진 입니다

0개의 댓글