[Emotion] input 태그의 placeholder 색상 변경하기

종인·2023년 4월 16일
0

문제점

코드

import styled from "@emotion/styled";

export const Input = styled.input`
  width: 384px;
  padding-left: 16px;
  height: 64px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid #ffffff;
  border-radius: 16px;
  margin-bottom: 20px;
`;

해결책

코드

import styled from "@emotion/styled";
export const Input = styled.input`
  width: 384px;
  padding-left: 16px;
  height: 64px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid #ffffff;
  border-radius: 16px;
  margin-bottom: 20px;

  &::placeholder {
    color: red; /* 기존 placeholder 스타일을 override 한다. */
  }
`;
profile
어쩌면 오늘 하루는

0개의 댓글

Powered by GraphCDN, the GraphQL CDN