标签: css reactjs styled-components
用作样式组件时如何更改输入背景色?
const MyInput = styled.input` background-color: "blue"; `
答案 0 :(得分:2)
这应该有效
const MyInput = styled.input` background: blue; `