gpt4 book ai didi

css - 将自定义样式应用于 react 选择和最佳实践

转载 作者:行者123 更新时间:2023-11-28 01:51:43 24 4
gpt4 key购买 nike

本质上,我想将我的输入字段的样式保持为 react-select 组件的样式。我了解到 styled-components 是最好的做法,但我仍然不确定要更改哪些样式才能获得我想要的结果。我想删除边框、聚焦发光并使其内联,同时保留其他所有内容。我会更改 .Select-menu-outer 吗?

Here is an example of one of my custom input fields

Here is my css style

最佳答案

您可以查看 react-select 的文档以对其组件进行样式设置。

const customStyles = {
container: base => {(
...base,
backgroundColor: {/* Your color */}
)},
option: base => {(
...base,
backgroundColor: {/* Your color */}
)}
}

<Select styles={customStyles} />

您可以通过它来设置 react-select 的许多组件的样式。您只需要定位正确的组件,您甚至可以使用状态。

关于css - 将自定义样式应用于 react 选择和最佳实践,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/49889870/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com