Styling Accordion tab dash bootstrap component(设置可折叠面板选项卡短划线引导组件的样式)
本文介绍了设置可折叠面板选项卡短划线引导组件的样式的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我想更改选项卡的颜色和对齐方式以使其居中。到目前为止,我一直在使用
style={‘extAlign’:‘Center’}和displace=flex选项,但这会影响内容对齐方式。
任何人都知道如何使用CSS覆盖选项卡中的标题(本例中为第1项、第2项和第3项)
import dash_bootstrap_components as dbc
from dash import html
accordion = html.Div(
dbc.Accordion(
[
dbc.AccordionItem(
[
html.P("This is the content of the first section"),
dbc.Button("Click here"),
],
title="Item 1",
),
dbc.AccordionItem(
[
html.P("This is the content of the second section"),
dbc.Button("Don't click me!", color="danger"),
],
title="Item 2",
),
dbc.AccordionItem(
"This is the content of the third section",
title="Item 3",
),
],
)
)
https://dash-bootstrap-components.opensource.faculty.ai/docs/components/accordion/
推荐答案
您需要将.accordion-button
的样式更改为:
.accordion-button {
text-align: center;
display: block;
}
将其放置在assets
下的.css
文件中,该文件应与您的应用程序文件放置在同一目录级别。
这篇关于设置可折叠面板选项卡短划线引导组件的样式的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
沃梦达教程
本文标题为:设置可折叠面板选项卡短划线引导组件的样式
基础教程推荐
猜你喜欢
- 在 JS 中获取客户端时区(不是 GMT 偏移量) 2022-01-01
- 动态更新多个选择框 2022-01-01
- 我什么时候应该在导入时使用方括号 2022-01-01
- 响应更改 div 大小保持纵横比 2022-01-01
- 角度Apollo设置WatchQuery结果为可用变量 2022-01-01
- 有没有办法使用OpenLayers更改OpenStreetMap中某些要素 2022-09-06
- 当用户滚动离开时如何暂停 youtube 嵌入 2022-01-01
- Karma-Jasmine:如何正确监视 Modal? 2022-01-01
- 悬停时滑动输入并停留几秒钟 2022-01-01
- 在for循环中使用setTimeout 2022-01-01