adding the arrow to dropdown pills for twitter bootstrap?

前端 未结 4 2085
南方客
南方客 2021-02-02 18:02

I got the twitter bootstrap dropdown buttons successfully working, but I have a tiny problem. The black navbar here:

http://twitter.github.com/bootstrap/javascript.html#

4条回答
  •  南旧
    南旧 (楼主)
    2021-02-02 18:29

    This is work for me


        //css
            .arrow-right > .dropdown-menu:after {
            content: '';
            display: inline-block;
            border-left: 6px solid transparent;
            border-right: 6px solid transparent;
            border-bottom: 6px solid #ffffff;
            position: absolute;
            top: -6px;
            right: 10px;
            }
    
            .arrow-left > .dropdown-menu:after {
            content: '';
            display: inline-block;
            border-left: 6px solid transparent;
            border-right: 6px solid transparent;
            border-bottom: 6px solid #ffffff;
            position: absolute;
            top: -6px;
            left: 10px;
            }
    
        // html
    
    //for left side dropdown menu
    
        
    
    
    //for right side dropdown menu
    
        
    

提交回复
热议问题