英文:
How to put Bootstrap accordion button before text and change it's style?
问题
这是 Bootstrap 手风琴带有加号和减号的链接:https://www.tutorialrepublic.com/codelab.php?topic=bootstrap&file=accordion-with-plus-minus-icon
如何将按钮放置在如下链接所示:https://ibb.co/GJRGKnn
此外,我想要将按钮的样式更改为如下链接所示:https://ibb.co/GPTGpp8
谢谢您!
英文:
Here is link for bootstrap accordion with plus and minuses: https://www.tutorialrepublic.com/codelab.php?topic=bootstrap&file=accordion-with-plus-minus-icon
How to put buttons as shown in this link: https://ibb.co/GJRGKnn
Also I want to change button's style as shown in this link: https://ibb.co/GPTGpp8
Thank You!
答案1
得分: 1
请添加这个CSS并再次检查。
.accordion-button::after {
position: absolute;
left: 0;
}
英文:
Please add this css and check agian.
.accordion-button::after {
position: absolute;
left: 0;
}
通过集体智慧和协作来改善编程学习和解决问题的方式。致力于成为全球开发者共同参与的知识库,让每个人都能够通过互相帮助和分享经验来进步。
评论