gpt4 book ai didi

css - 如何覆盖样式组件中的 css 类

转载 作者:行者123 更新时间:2023-11-27 23:38:15 24 4
gpt4 key购买 nike

Search.tsx 中:

import { SearchInput } from Search.styles.ts

<SearchInput
onChange={handleChange}
value={values["searchValue"]}
placeholder="Search"
type="text"
name="searchValue"
/>

输出 html:

<div class="1">
<div class="2">
<div class="3">
<span class="InputWrapper">
<input placeholder="Search" name="searchValue" class="Input input normalVariant" formnovalidate="" type="text" value="" >
</span>
</div>
</div>
</div>

Search.styles.ts 中:

import * as Toolkit from "@some_repo/toolkit";
export const SearchInput = styled(Toolkit.Input)`
InputWrapper: 100%
`

我想设置 InputWrapper: width 100%,正确的做法是什么?

最佳答案

它就像 css 一样工作。

import * as Toolkit from "@some_repo/toolkit";
export const SearchInput = styled(Toolkit.Input)`
.InputWrapper {
width: 100%;
};

关于css - 如何覆盖样式组件中的 css 类,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/57146398/

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