gpt4 book ai didi

css - 如何使用带样式组件的默认 Bootstrap 类?

转载 作者:行者123 更新时间:2023-12-05 01:35:10 26 4
gpt4 key购买 nike

我想在 styled-component 的样式中使用 Bootstrap 的 display-4 类。

styled-component:

const Heading = styled.h2`
font-weight: bold,
color: #968c8c,
`;

我应该将 display-4 Bootstrap 类放在 styled-component 中的什么位置。我知道每次使用 Heading 组件时我都可以执行 className='display-4',但肯定有更好的方法吗?

最佳答案

您可以使用 attrs设置 Prop 值。

This is a chainable method that attaches some props to a styledcomponent. The first and only argument is an object that will bemerged into the rest of the component's props.

const Heading = styled.h2.attrs(() => ({
className: 'display-4',
}))`
font-weight: bold,
color: #968c8c,
`;

关于css - 如何使用带样式组件的默认 Bootstrap 类?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/63210614/

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