Bootstrap Accordion,设置活动头板的样式

时间:2016-07-24 12:48:30

标签: jquery html css twitter-bootstrap twitter-bootstrap-3

我想将样式设置为活动位置'面板标题'如下: enter image description here

我想为活动面板添加背景颜色和字体粗细......并且该图标位于向下位置... 我有什么(我的代码):http://www.bootply.com/wZrFTAIRfe

P.S。对不起我的英文..

2 个答案:

答案 0 :(得分:2)

试试这个:

.panel-default>.panel-heading[aria-expanded="true"] {
    font-weight: bold;
    background-color: #99ccff;
    background-image: url(http://storage4.static.itmages.ru/i/16/0724/h_1469363621_2952426_312a0c7b35.png);
}

答案 1 :(得分:1)

将此添加到css

[aria-expanded="true"] .panel-title
{
background-color: blue;
font-weight: 600;
}