Bootstrap 4 Collapse show state with Font Awesome icon

前端 未结 6 971
天命终不由人
天命终不由人 2020-12-24 02:59

I have a single Bootstrap 4 collapse as follows...



        
6条回答
  •  Happy的楠姐
    2020-12-24 03:42

    Solution with no FontAwesome unicode and no JavaScript:

    1. Include both icons where you currently have one icon
    2. Use CSS to hide the up-arrow element while the content is expanded, and hide the down-arrow while the content is collapsed

    Example:

    HTML:

    
        
        
    
    

    CSS:

    [aria-expanded="true"] .fa-chevron-circle-up, 
    [aria-expanded="false"] .fa-chevron-circle-down {
        display:none;
    }
    

提交回复
热议问题