/* Changes an element's color on hover */ .selector { background-color: black; } .selector:hover { background-color: blue; }
a:hover { background-color: yellow; }
const Button = styled.div` background-color: green; color: white; /* like scss, you can add hover effect */ &:hover { display: block; } `;