Bootstrap 3 collapse change chevron icon on click

前端 未结 12 1884
别那么骄傲
别那么骄傲 2020-12-08 03:01

I have read all related questions regarding my question and have tried them all to no avail. I can\'t seem to make my code work, even though I \"think\" almost every code I

12条回答
  •  生来不讨喜
    2020-12-08 03:22

    fixed the issue changing HTML/CSS

    HTML:

    
    

    CSS:

    .yt-toggle.collapsed .fa-caret-down {
      display: none;
    }
    
    .yt-toggle.collapsed .fa-caret-right {
      display: inline-block;
    }
    
    .yt-toggle .fa-caret-right {
      display: none;
    }
    

提交回复
热议问题