[πŸ‹ CSS] Styled Components μ»΄ν¬λ„ŒνŠΈ hover 속성 μ μš©ν•˜κΈ°

dsfasdΒ·2022λ…„ 10μ›” 27일
1

마우슀λ₯Ό λ²„νŠΌ μœ„μ— κ°–λ‹€λ˜λ©΄ 색상이 λ°”λ€Œλ„λ‘ hover 속성을 μ μš©ν•˜κ³ μž ν•œλ‹€.

기쑴에 μ œμž‘ν•œ styled componentλ₯Ό ν™•μž₯μ‹œν‚€λŠ” 방식이 μ•„λ‹ˆλΌ
&:hover { } 내뢀에 속성을 μΆ”κ°€μ‹œμΌœμ£ΌλŠ” 방식이닀.

import styled from "styled-components";

const Practice = styled.button`
  padding: 1rem;
  font-size: 2rem;
  background: pink;
  transition: 0.5s;

  // hover에 μ μš©μ‹œν‚¬ 속성 
  &:hover {
    background: purple;
    color: white;
  }
`;

export default function App() {
  return <Practice>Practice!</Practice>;
}

profile
기둝을 μ •λ¦¬ν•˜λŠ” 곡간!

0개의 λŒ“κΈ€