使用样式组件更改输入背景色

时间:2019-03-05 08:39:03

标签: css reactjs styled-components

用作样式组件时如何更改输入背景色?

const MyInput = styled.input`
background-color: "blue";
`

1 个答案:

答案 0 :(得分:2)

这应该有效

const MyInput = styled.input`
background: blue;
`