簡體   English   中英

手風琴折疊並打開時如何更改Bootstrap手風琴面板標題/標題背景顏色

[英]How to change the Bootstrap accordion panel heading/title background color when the accordion collapses and is open

這是在折疊並打開手風琴時需要更改背景顏色的代碼: http : //www.bootply.com/cherylbbb/COm6fikZKx

如何更改CSS以設置背景顏色變化的樣式?

提前非常感謝您!

您可以通過CSS與panel-headingcollapsed類一起玩來實現。 Par示例將這些行添加到您的css:

/* set panel-heading paddings to a instead of h3 */    
.panel-heading { padding: 0 }
.panel-heading h3 { background: #bbf; }
.panel-heading a { padding: 10px 15px; }

/* change color of collapsed class */
.collapsed { background: #fbb; }

/* reposition the left arrows */
.panel-heading .accordion-toggle.collapsed:after { top: 10px; }
.panel-heading .accordion-toggle:after { top: 10px; }

通過更改查看演示的外觀

暫無
暫無

聲明:本站的技術帖子網頁,遵循CC BY-SA 4.0協議,如果您需要轉載,請注明本站網址或者原文地址。任何問題請咨詢:yoyou2525@163.com.

 
粵ICP備18138465號  © 2020-2024 STACKOOM.COM