Twitter bootstrap caret size

前端 未结 4 1884
暗喜
暗喜 2020-12-30 23:35

I have a caret like this:



        
4条回答
  •  臣服心动
    2020-12-31 00:28

    As I can't comment on the accepted answer, I would like to suggest tweaking that solution to use border-width to prevent global color styling of the caret, less code and includes automatic styling of the dropup caret.

    .caret {
        border-width: 8px;
    }
    

    In case you need a different shaped caret, you can use left, right, top, bottom:

    border-left-width: 8px;
    border-right-width: 8px;
    border-top-width: 10px;
    border-bottom-width: 10px;
    

    or

    border-width: 10px 8px 10px 8px;
    

    etc.

提交回复
热议问题